pub struct ListItemsInPathOutput {
pub folders: Option<Vec<String>>,
pub has_next: Option<bool>,
pub items: Option<Vec<Item>>,
pub next_page: Option<String>,
}Fields§
§folders: Option<Vec<String>>§has_next: Option<bool>§items: Option<Vec<Item>>§next_page: Option<String>Implementations§
Source§impl ListItemsInPathOutput
impl ListItemsInPathOutput
pub fn new() -> ListItemsInPathOutput
Trait Implementations§
Source§impl Clone for ListItemsInPathOutput
impl Clone for ListItemsInPathOutput
Source§fn clone(&self) -> ListItemsInPathOutput
fn clone(&self) -> ListItemsInPathOutput
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 Debug for ListItemsInPathOutput
impl Debug for ListItemsInPathOutput
Source§impl Default for ListItemsInPathOutput
impl Default for ListItemsInPathOutput
Source§fn default() -> ListItemsInPathOutput
fn default() -> ListItemsInPathOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListItemsInPathOutput
impl<'de> Deserialize<'de> for ListItemsInPathOutput
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
Source§impl PartialEq for ListItemsInPathOutput
impl PartialEq for ListItemsInPathOutput
Source§fn eq(&self, other: &ListItemsInPathOutput) -> bool
fn eq(&self, other: &ListItemsInPathOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListItemsInPathOutput
impl Serialize for ListItemsInPathOutput
impl StructuralPartialEq for ListItemsInPathOutput
Auto Trait Implementations§
impl Freeze for ListItemsInPathOutput
impl RefUnwindSafe for ListItemsInPathOutput
impl Send for ListItemsInPathOutput
impl Sync for ListItemsInPathOutput
impl Unpin for ListItemsInPathOutput
impl UnsafeUnpin for ListItemsInPathOutput
impl UnwindSafe for ListItemsInPathOutput
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