pub struct IceorixCuMsg<P: CuMsgPayload>(/* private fields */);Trait Implementations§
Source§impl<'__de, P, __Context> BorrowDecode<'__de, __Context> for IceorixCuMsg<P>where
P: BorrowDecode<'__de, __Context> + CuMsgPayload,
impl<'__de, P, __Context> BorrowDecode<'__de, __Context> for IceorixCuMsg<P>where
P: BorrowDecode<'__de, __Context> + CuMsgPayload,
Source§fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>(
decoder: &mut __D,
) -> Result<Self, DecodeError>
fn borrow_decode<__D: BorrowDecoder<'__de, Context = __Context>>( decoder: &mut __D, ) -> Result<Self, DecodeError>
Attempt to decode this type with the given BorrowDecode.
Source§impl<P: Clone + CuMsgPayload> Clone for IceorixCuMsg<P>
impl<P: Clone + CuMsgPayload> Clone for IceorixCuMsg<P>
Source§fn clone(&self) -> IceorixCuMsg<P>
fn clone(&self) -> IceorixCuMsg<P>
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<P: Debug + CuMsgPayload> Debug for IceorixCuMsg<P>
impl<P: Debug + CuMsgPayload> Debug for IceorixCuMsg<P>
Source§impl<P, __Context> Decode<__Context> for IceorixCuMsg<P>where
P: Decode<__Context> + CuMsgPayload,
impl<P, __Context> Decode<__Context> for IceorixCuMsg<P>where
P: Decode<__Context> + CuMsgPayload,
Source§impl<P: Default + CuMsgPayload> Default for IceorixCuMsg<P>
impl<P: Default + CuMsgPayload> Default for IceorixCuMsg<P>
Source§fn default() -> IceorixCuMsg<P>
fn default() -> IceorixCuMsg<P>
Returns the “default value” for a type. Read more
Source§impl<P> Encode for IceorixCuMsg<P>where
P: Encode + CuMsgPayload,
impl<P> Encode for IceorixCuMsg<P>where
P: Encode + CuMsgPayload,
Source§impl<P: CuMsgPayload> ZeroCopySend for IceorixCuMsg<P>
impl<P: CuMsgPayload> ZeroCopySend for IceorixCuMsg<P>
Auto Trait Implementations§
impl<P> Freeze for IceorixCuMsg<P>where
P: Freeze,
impl<P> RefUnwindSafe for IceorixCuMsg<P>where
P: RefUnwindSafe,
impl<P> Send for IceorixCuMsg<P>where
P: Send,
impl<P> Sync for IceorixCuMsg<P>where
P: Sync,
impl<P> Unpin for IceorixCuMsg<P>where
P: Unpin,
impl<P> UnwindSafe for IceorixCuMsg<P>where
P: UnwindSafe,
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> 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