pub struct CsiPlugin {
pub ID: Option<String>,
pub provider: Option<String>,
pub version: Option<String>,
pub controller_required: Option<bool>,
pub controllers: Option<HashMap<String, CsiInfo>>,
pub nodes: Option<HashMap<String, CsiInfo>>,
pub allocations: Option<Vec<AllocationListStub>>,
pub controllers_healthy: Option<i32>,
pub nodes_healthy: Option<i32>,
pub create_index: Option<i32>,
pub modify_index: Option<i32>,
}
Fields§
§ID: Option<String>
§provider: Option<String>
§version: Option<String>
§controller_required: Option<bool>
§controllers: Option<HashMap<String, CsiInfo>>
§nodes: Option<HashMap<String, CsiInfo>>
§allocations: Option<Vec<AllocationListStub>>
§controllers_healthy: Option<i32>
§nodes_healthy: Option<i32>
§create_index: Option<i32>
§modify_index: Option<i32>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CsiPlugin
impl<'de> Deserialize<'de> for CsiPlugin
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
impl StructuralPartialEq for CsiPlugin
Auto Trait Implementations§
impl Freeze for CsiPlugin
impl RefUnwindSafe for CsiPlugin
impl Send for CsiPlugin
impl Sync for CsiPlugin
impl Unpin for CsiPlugin
impl UnwindSafe for CsiPlugin
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