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§
§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§
Source§impl AccountExt for Account
impl AccountExt for Account
Source§impl<'de> Deserialize<'de> for Account
impl<'de> Deserialize<'de> for Account
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Account, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Account, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Account
impl Serialize for Account
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 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