pub struct ParsedCardFrame {
pub wire_type: String,
pub card: Option<Map<String, Value>>,
pub patch: Map<String, Value>,
}Expand description
Parsed custom-mode card frame.
Fields§
§wire_type: StringWire type (soothe.card.*).
card: Option<Map<String, Value>>Full card on create, otherwise None.
patch: Map<String, Value>Patch for update/finalize.
Trait Implementations§
Source§impl Clone for ParsedCardFrame
impl Clone for ParsedCardFrame
Source§fn clone(&self) -> ParsedCardFrame
fn clone(&self) -> ParsedCardFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedCardFrame
impl RefUnwindSafe for ParsedCardFrame
impl Send for ParsedCardFrame
impl Sync for ParsedCardFrame
impl Unpin for ParsedCardFrame
impl UnsafeUnpin for ParsedCardFrame
impl UnwindSafe for ParsedCardFrame
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