pub struct Panel {Show 17 fields
pub panel_id: u8,
pub description: String,
pub normal_x: u8,
pub normal_y: u8,
pub normal_z: u8,
pub paddle0: Paddle,
pub paddle1: Option<Paddle>,
pub paddle2: Option<Paddle>,
pub paddle3: Option<Paddle>,
pub paddle4: Option<Paddle>,
pub paddle5: Option<Paddle>,
pub paddle6: Option<Paddle>,
pub paddle7: Option<Paddle>,
pub paddle8: Option<Paddle>,
pub paddle9: Option<Paddle>,
pub paddle10: Option<Paddle>,
pub paddle11: Option<Paddle>,
}
Fields§
§panel_id: u8
§description: String
§normal_x: u8
§normal_y: u8
§normal_z: u8
§paddle0: Paddle
§paddle1: Option<Paddle>
§paddle2: Option<Paddle>
§paddle3: Option<Paddle>
§paddle4: Option<Paddle>
§paddle5: Option<Paddle>
§paddle6: Option<Paddle>
§paddle7: Option<Paddle>
§paddle8: Option<Paddle>
§paddle9: Option<Paddle>
§paddle10: Option<Paddle>
§paddle11: Option<Paddle>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Panel
impl RefUnwindSafe for Panel
impl Send for Panel
impl Sync for Panel
impl Unpin for Panel
impl UnwindSafe for Panel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read more