pub struct Redundancy {
pub max_num_supported: Option<i64>,
pub member_id: String,
pub min_num_needed: Option<i64>,
pub mode: String,
pub name: String,
pub redundancy_enabled: bool,
pub status: ResourceStatus,
pub redundancy_set: Vec<ODataId>,
}Fields§
§max_num_supported: Option<i64>§member_id: String§min_num_needed: Option<i64>§mode: String§name: String§redundancy_enabled: bool§status: ResourceStatus§redundancy_set: Vec<ODataId>Trait Implementations§
Source§impl Clone for Redundancy
impl Clone for Redundancy
Source§fn clone(&self) -> Redundancy
fn clone(&self) -> Redundancy
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 Redundancy
impl Debug for Redundancy
Source§impl<'de> Deserialize<'de> for Redundancy
impl<'de> Deserialize<'de> for Redundancy
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 Redundancy
impl RefUnwindSafe for Redundancy
impl Send for Redundancy
impl Sync for Redundancy
impl Unpin for Redundancy
impl UnsafeUnpin for Redundancy
impl UnwindSafe for Redundancy
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