pub struct WireEdgeGroupBundle {
pub inbound: BTreeMap<String, Node<Vec<u8>>>,
pub status: Node<WireEdgeGroupStatus>,
pub issues: Node<WireEdgeGroupIssue>,
/* private fields */
}Expand description
WireEdgeGroupBundle data container.
Fields§
§inbound: BTreeMap<String, Node<Vec<u8>>>inbound field for inbound.
status: Node<WireEdgeGroupStatus>status field for status.
issues: Node<WireEdgeGroupIssue>issues field for issues.
Implementations§
Auto Trait Implementations§
impl !Freeze for WireEdgeGroupBundle
impl !RefUnwindSafe for WireEdgeGroupBundle
impl !Send for WireEdgeGroupBundle
impl !Sync for WireEdgeGroupBundle
impl Unpin for WireEdgeGroupBundle
impl UnsafeUnpin for WireEdgeGroupBundle
impl !UnwindSafe for WireEdgeGroupBundle
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