pub struct ComponentDirectoryPageResponse {
pub directory: ComponentDirectoryHead,
pub entries: Vec<ComponentDirectoryChildEntry>,
pub next_cursor: Option<ComponentDirectoryPageCursor>,
}Expand description
ComponentDirectoryPageResponse
One bounded caller-scoped page under the exact requested Directory head.
Fields§
§directory: ComponentDirectoryHead§entries: Vec<ComponentDirectoryChildEntry>§next_cursor: Option<ComponentDirectoryPageCursor>Trait Implementations§
Source§impl Clone for ComponentDirectoryPageResponse
impl Clone for ComponentDirectoryPageResponse
Source§fn clone(&self) -> ComponentDirectoryPageResponse
fn clone(&self) -> ComponentDirectoryPageResponse
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 ComponentDirectoryPageResponse
impl<'de> Deserialize<'de> for ComponentDirectoryPageResponse
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
impl Eq for ComponentDirectoryPageResponse
impl StructuralPartialEq for ComponentDirectoryPageResponse
Auto Trait Implementations§
impl Freeze for ComponentDirectoryPageResponse
impl RefUnwindSafe for ComponentDirectoryPageResponse
impl Send for ComponentDirectoryPageResponse
impl Sync for ComponentDirectoryPageResponse
impl Unpin for ComponentDirectoryPageResponse
impl UnsafeUnpin for ComponentDirectoryPageResponse
impl UnwindSafe for ComponentDirectoryPageResponse
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