pub struct BridgeCallArgument {
pub name: Symbol,
pub codec: Symbol,
pub media: CallArgumentMedia,
pub content_id: String,
pub fenced: String,
}Expand description
One packed argument in a bridge/Call payload.
Fields§
§name: SymbolArgument name.
codec: SymbolCodec used to encode the original value at data position.
media: CallArgumentMediaEncoded media kind.
content_id: StringContent id of the pre-fence encoded datum.
fenced: StringFence-wrapped encoded argument text shown to the model.
Implementations§
Source§impl BridgeCallArgument
impl BridgeCallArgument
Trait Implementations§
Source§impl Clone for BridgeCallArgument
impl Clone for BridgeCallArgument
Source§fn clone(&self) -> BridgeCallArgument
fn clone(&self) -> BridgeCallArgument
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 moreSource§impl Debug for BridgeCallArgument
impl Debug for BridgeCallArgument
impl Eq for BridgeCallArgument
Source§impl PartialEq for BridgeCallArgument
impl PartialEq for BridgeCallArgument
impl StructuralPartialEq for BridgeCallArgument
Auto Trait Implementations§
impl Freeze for BridgeCallArgument
impl RefUnwindSafe for BridgeCallArgument
impl Send for BridgeCallArgument
impl Sync for BridgeCallArgument
impl Unpin for BridgeCallArgument
impl UnsafeUnpin for BridgeCallArgument
impl UnwindSafe for BridgeCallArgument
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