pub struct Storage {Show 16 fields
pub id: i64,
pub account: Ref,
pub region_info: Ref,
pub name: String,
pub description: Option<String>,
pub storage_type: String,
pub provider_type: String,
pub endpoint: String,
pub region: Option<String>,
pub bucket: Option<String>,
pub base: Option<String>,
pub block_region: Option<String>,
pub block_size: Option<i32>,
pub is_active: bool,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: i64§account: Ref§region_info: Ref§name: String§description: Option<String>§storage_type: String§provider_type: String§endpoint: String§region: Option<String>§bucket: Option<String>§base: Option<String>§block_region: Option<String>§block_size: Option<i32>§is_active: bool§created_at: String§updated_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Storage
impl<'de> Deserialize<'de> for Storage
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 Storage
impl RefUnwindSafe for Storage
impl Send for Storage
impl Sync for Storage
impl Unpin for Storage
impl UnsafeUnpin for Storage
impl UnwindSafe for Storage
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