pub struct Subaccount {
pub access_settings: Box<SubaccountAccessSetting>,
pub created: String,
pub description: String,
pub home_directory: String,
pub id: i64,
pub labels: HashMap<String, String>,
pub server: String,
pub storage_box: i64,
pub username: String,
}Fields§
§access_settings: Box<SubaccountAccessSetting>§created: StringPoint in time when the Resource was created (in ISO-8601 format).
description: StringA description of Storage Box Subaccount.
home_directory: StringHome directory of the Storage Box Subaccount.
id: i64ID of the Storage Box Subaccount.
labels: HashMap<String, String>User-defined labels (key/value pairs) for the Resource. For more information, see "Labels". | User-defined labels (key/value pairs) for the Resource. Note that the set of Labels provided in the request will overwrite the existing one. For more information, see "Labels".
server: StringFQDN of the Storage Box Subaccount.
storage_box: i64ID of the Storage Box.
username: StringUsername of the Storage Box Subaccount.
Implementations§
Trait Implementations§
Source§impl Clone for Subaccount
impl Clone for Subaccount
Source§fn clone(&self) -> Subaccount
fn clone(&self) -> Subaccount
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 Subaccount
impl Debug for Subaccount
Source§impl Default for Subaccount
impl Default for Subaccount
Source§fn default() -> Subaccount
fn default() -> Subaccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Subaccount
impl<'de> Deserialize<'de> for Subaccount
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
Source§impl PartialEq for Subaccount
impl PartialEq for Subaccount
Source§impl Serialize for Subaccount
impl Serialize for Subaccount
impl StructuralPartialEq for Subaccount
Auto Trait Implementations§
impl Freeze for Subaccount
impl RefUnwindSafe for Subaccount
impl Send for Subaccount
impl Sync for Subaccount
impl Unpin for Subaccount
impl UnwindSafe for Subaccount
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