pub struct DealerPrivMsg { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for DealerPrivMsg
impl Clone for DealerPrivMsg
Source§fn clone(&self) -> DealerPrivMsg
fn clone(&self) -> DealerPrivMsg
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 DealerPrivMsg
impl Debug for DealerPrivMsg
Source§impl EncodeSize for DealerPrivMsg
impl EncodeSize for DealerPrivMsg
Source§fn encode_size(&self) -> usize
fn encode_size(&self) -> usize
Returns the encoded size of this value (in bytes).
Source§impl PartialEq for DealerPrivMsg
impl PartialEq for DealerPrivMsg
Source§impl Read for DealerPrivMsg
impl Read for DealerPrivMsg
Source§impl Write for DealerPrivMsg
impl Write for DealerPrivMsg
impl Eq for DealerPrivMsg
impl StructuralPartialEq for DealerPrivMsg
Auto Trait Implementations§
impl Freeze for DealerPrivMsg
impl RefUnwindSafe for DealerPrivMsg
impl Send for DealerPrivMsg
impl Sync for DealerPrivMsg
impl Unpin for DealerPrivMsg
impl UnwindSafe for DealerPrivMsg
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Encode for Twhere
T: Write + EncodeSize,
impl<T> Encode for Twhere
T: Write + EncodeSize,
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 more