#[non_exhaustive]pub struct Account {Show 15 fields
pub created: OffsetDateTime,
pub modified: Option<OffsetDateTime>,
pub internal_meta_data: Option<HashMap<String, String>>,
pub name: String,
pub storage_key: String,
pub storage_group: Option<String>,
pub tiers: Vec<Tier>,
pub post_process_done_by_account: bool,
pub weeks_of_data_storage: u32,
pub verified: bool,
pub access_realtime_cidr: Vec<AccountCidr>,
pub access_api_cidr: Vec<AccountCidr>,
pub external_id: Option<String>,
pub fps_host_name: Option<String>,
pub links: HashMap<String, Url>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.created: OffsetDateTime§modified: Option<OffsetDateTime>§internal_meta_data: Option<HashMap<String, String>>§name: String§storage_key: String§storage_group: Option<String>§tiers: Vec<Tier>§post_process_done_by_account: bool§weeks_of_data_storage: u32§verified: bool§access_realtime_cidr: Vec<AccountCidr>§access_api_cidr: Vec<AccountCidr>§external_id: Option<String>§fps_host_name: Option<String>§links: HashMap<String, Url>Trait Implementations§
impl StructuralPartialEq for Account
Auto Trait Implementations§
impl Freeze for Account
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnsafeUnpin for Account
impl UnwindSafe for Account
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