pub struct VaultList {
pub vaults: Vec<Vault>,
pub uri: String,
pub next_page_uri: Option<String>,
}
Fields§
§vaults: Vec<Vault>
The list of Vaults for this account
uri: String
§next_page_uri: Option<String>
URI of the next page of results, or null if there is no next page
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VaultList
impl<'de> Deserialize<'de> for VaultList
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 VaultList
impl RefUnwindSafe for VaultList
impl Send for VaultList
impl Sync for VaultList
impl Unpin for VaultList
impl UnwindSafe for VaultList
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