pub struct PlaySteerBoatSpec {
pub left_paddle_turning: bool,
pub right_paddle_turning: bool,
}Fields§
§left_paddle_turning: bool§right_paddle_turning: boolTrait Implementations§
Source§impl Clone for PlaySteerBoatSpec
impl Clone for PlaySteerBoatSpec
Source§fn clone(&self) -> PlaySteerBoatSpec
fn clone(&self) -> PlaySteerBoatSpec
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlaySteerBoatSpec
impl Debug for PlaySteerBoatSpec
Source§impl Deserialize for PlaySteerBoatSpec
impl Deserialize for PlaySteerBoatSpec
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<PlaySteerBoatSpec> for (bool, bool)
impl From<PlaySteerBoatSpec> for (bool, bool)
Source§fn from(other: PlaySteerBoatSpec) -> Self
fn from(other: PlaySteerBoatSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlaySteerBoatSpec
impl PartialEq for PlaySteerBoatSpec
Source§impl Serialize for PlaySteerBoatSpec
impl Serialize for PlaySteerBoatSpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for PlaySteerBoatSpec
Auto Trait Implementations§
impl Freeze for PlaySteerBoatSpec
impl RefUnwindSafe for PlaySteerBoatSpec
impl Send for PlaySteerBoatSpec
impl Sync for PlaySteerBoatSpec
impl Unpin for PlaySteerBoatSpec
impl UnwindSafe for PlaySteerBoatSpec
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