pub struct FixedSubscriptionDatabasesInfo {
pub subscription_id: Option<i32>,
pub number_of_databases: Option<i32>,
pub databases: Vec<FixedDatabase>,
pub links: Option<Vec<Link>>,
}Expand description
Subscription databases info returned within AccountFixedSubscriptionDatabases.
Fields§
§subscription_id: Option<i32>Subscription ID
number_of_databases: Option<i32>Number of databases reported by the API for this subscription
databases: Vec<FixedDatabase>List of databases in this subscription
links: Option<Vec<Link>>HATEOAS links
Trait Implementations§
Source§impl Clone for FixedSubscriptionDatabasesInfo
impl Clone for FixedSubscriptionDatabasesInfo
Source§fn clone(&self) -> FixedSubscriptionDatabasesInfo
fn clone(&self) -> FixedSubscriptionDatabasesInfo
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<'de> Deserialize<'de> for FixedSubscriptionDatabasesInfo
impl<'de> Deserialize<'de> for FixedSubscriptionDatabasesInfo
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 FixedSubscriptionDatabasesInfo
impl RefUnwindSafe for FixedSubscriptionDatabasesInfo
impl Send for FixedSubscriptionDatabasesInfo
impl Sync for FixedSubscriptionDatabasesInfo
impl Unpin for FixedSubscriptionDatabasesInfo
impl UnsafeUnpin for FixedSubscriptionDatabasesInfo
impl UnwindSafe for FixedSubscriptionDatabasesInfo
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