pub struct BridgeWarrant {
pub moves: ContentId,
pub frames: ContentId,
pub parts: Vec<(Symbol, ContentId)>,
}Expand description
Content ids of protocol books and part specs used to build a packet.
Fields§
§moves: ContentIdContent id of the dialogue move book.
frames: ContentIdContent id of the fluent frame book.
parts: Vec<(Symbol, ContentId)>Content ids of the part specs used by this packet, keyed by part kind.
Trait Implementations§
Source§impl Clone for BridgeWarrant
impl Clone for BridgeWarrant
Source§fn clone(&self) -> BridgeWarrant
fn clone(&self) -> BridgeWarrant
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 BridgeWarrant
impl Debug for BridgeWarrant
impl Eq for BridgeWarrant
Source§impl PartialEq for BridgeWarrant
impl PartialEq for BridgeWarrant
impl StructuralPartialEq for BridgeWarrant
Auto Trait Implementations§
impl Freeze for BridgeWarrant
impl RefUnwindSafe for BridgeWarrant
impl Send for BridgeWarrant
impl Sync for BridgeWarrant
impl Unpin for BridgeWarrant
impl UnsafeUnpin for BridgeWarrant
impl UnwindSafe for BridgeWarrant
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