pub struct DirectoryList {
pub parent: String,
pub objects: Vec<Object>,
pub policy: Policy,
}Expand description
Directory listing response for v3 API
Fields§
§parent: String§objects: Vec<Object>§policy: PolicyTrait Implementations§
Source§impl Debug for DirectoryList
impl Debug for DirectoryList
Source§impl<'de> Deserialize<'de> for DirectoryList
impl<'de> Deserialize<'de> for DirectoryList
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 DirectoryList
impl RefUnwindSafe for DirectoryList
impl Send for DirectoryList
impl Sync for DirectoryList
impl Unpin for DirectoryList
impl UnwindSafe for DirectoryList
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