pub struct ActionBody<B>where
    B: SplitByteSlice,{
    pub action_hdr: Ref<B, ActionHdr>,
    pub elements: B,
}Expand description
Action frame body.
Contains the contents of an action frame: an action header and action elements.
Fields§
§action_hdr: Ref<B, ActionHdr>§elements: BImplementations§
Source§impl<B> ActionBody<B>where
    B: SplitByteSlice,
 
impl<B> ActionBody<B>where
    B: SplitByteSlice,
Trait Implementations§
Source§impl<B> AsRef<ActionBody<B>> for ActionFrame<B>where
    B: SplitByteSlice,
 
impl<B> AsRef<ActionBody<B>> for ActionFrame<B>where
    B: SplitByteSlice,
Source§fn as_ref(&self) -> &ActionBody<B>
 
fn as_ref(&self) -> &ActionBody<B>
Converts this type into a shared reference of the (usually inferred) input type.
Auto Trait Implementations§
impl<B> Freeze for ActionBody<B>where
    B: Freeze,
impl<B> RefUnwindSafe for ActionBody<B>where
    B: RefUnwindSafe,
impl<B> Send for ActionBody<B>where
    B: Send,
impl<B> Sync for ActionBody<B>where
    B: Sync,
impl<B> Unpin for ActionBody<B>where
    B: Unpin,
impl<B> UnwindSafe for ActionBody<B>where
    B: 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