pub struct FleetSection {
pub topology_hash_algorithm: String,
pub topology_hash_input: String,
pub discovery_topology_hash: String,
pub pre_snapshot_topology_hash: String,
pub topology_hash: String,
pub members: Vec<FleetMember>,
}Expand description
FleetSection
Fields§
§topology_hash_algorithm: String§topology_hash_input: String§discovery_topology_hash: String§pre_snapshot_topology_hash: String§topology_hash: String§members: Vec<FleetMember>Trait Implementations§
Source§impl Clone for FleetSection
impl Clone for FleetSection
Source§fn clone(&self) -> FleetSection
fn clone(&self) -> FleetSection
Returns a duplicate of the value. Read more
1.0.0 · 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 FleetSection
impl Debug for FleetSection
Source§impl<'de> Deserialize<'de> for FleetSection
impl<'de> Deserialize<'de> for FleetSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FleetSection
impl RefUnwindSafe for FleetSection
impl Send for FleetSection
impl Sync for FleetSection
impl Unpin for FleetSection
impl UnsafeUnpin for FleetSection
impl UnwindSafe for FleetSection
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