pub struct Node {
pub id: Option<u32>,
pub name: Option<String>,
pub interconnect_name: Option<String>,
pub initial_avg_bandwidth_bps: Option<u64>,
pub initial_peak_bandwidth_bps: Option<u64>,
}Fields§
§id: Option<u32>§name: Option<String>§interconnect_name: Option<String>§initial_avg_bandwidth_bps: Option<u64>§initial_peak_bandwidth_bps: Option<u64>Trait Implementations§
Source§impl<'a, ___E> Encode<Node<'static>, ___E> for &'a Nodewhere
___E: Encoder + ?Sized,
impl<'a, ___E> Encode<Node<'static>, ___E> for &'a Nodewhere
___E: Encoder + ?Sized,
Source§impl<___E> Encode<Node<'static>, ___E> for Nodewhere
___E: Encoder + ?Sized,
impl<___E> Encode<Node<'static>, ___E> for Nodewhere
___E: Encoder + ?Sized,
Source§impl<'de> FromWireRef<Node<'de>> for Node
impl<'de> FromWireRef<Node<'de>> for Node
Source§fn from_wire_ref(wire: &Node<'de>) -> Self
fn from_wire_ref(wire: &Node<'de>) -> Self
Converts the given reference to this type.
Source§impl Ord for Node
impl Ord for Node
Source§impl PartialOrd for Node
impl PartialOrd for Node
impl Eq for Node
impl StructuralPartialEq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnsafeUnpin for Node
impl UnwindSafe for Node
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
impl<T, W> FromWireOption<Box<'_, W>> for Twhere
T: FromWire<W>,
§fn from_wire_option(wire: Box<'_, W>) -> Option<T>
fn from_wire_option(wire: Box<'_, W>) -> Option<T>
Converts the given owned value to an option of this type.
§impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
impl<T, W> FromWireOptionRef<Box<'_, W>> for Twhere
T: FromWireRef<W>,
§fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
fn from_wire_option_ref(wire: &Box<'_, W>) -> Option<T>
Converts the given reference to an option of this type.
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]