pub struct BlockVolume {
pub id: String,
pub name: Option<String>,
pub cluster_name: Option<String>,
pub cluster_uuid: Option<String>,
pub shard_id: i64,
pub region_cluster_id: i64,
pub cluster_ready: bool,
pub is_active: bool,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§name: Option<String>§cluster_name: Option<String>§cluster_uuid: Option<String>§shard_id: i64§region_cluster_id: i64§cluster_ready: bool§is_active: bool§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for BlockVolume
impl Clone for BlockVolume
Source§fn clone(&self) -> BlockVolume
fn clone(&self) -> BlockVolume
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 BlockVolume
impl Debug for BlockVolume
Source§impl<'de> Deserialize<'de> for BlockVolume
impl<'de> Deserialize<'de> for BlockVolume
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 BlockVolume
impl RefUnwindSafe for BlockVolume
impl Send for BlockVolume
impl Sync for BlockVolume
impl Unpin for BlockVolume
impl UnsafeUnpin for BlockVolume
impl UnwindSafe for BlockVolume
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