pub struct PathsResponse {
pub data: Option<Vec<PathResponse>>,
pub meta: Option<Box<PaginationMeta>>,
}Expand description
PathsResponse : A paginated list of paths.
Fields§
§data: Option<Vec<PathResponse>>§meta: Option<Box<PaginationMeta>>Implementations§
Source§impl PathsResponse
impl PathsResponse
Sourcepub fn new() -> PathsResponse
pub fn new() -> PathsResponse
A paginated list of paths.
Trait Implementations§
Source§impl Clone for PathsResponse
impl Clone for PathsResponse
Source§fn clone(&self) -> PathsResponse
fn clone(&self) -> PathsResponse
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 PathsResponse
impl Debug for PathsResponse
Source§impl Default for PathsResponse
impl Default for PathsResponse
Source§fn default() -> PathsResponse
fn default() -> PathsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PathsResponse
impl<'de> Deserialize<'de> for PathsResponse
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 PathsResponse
impl PartialEq for PathsResponse
Source§impl Serialize for PathsResponse
impl Serialize for PathsResponse
impl StructuralPartialEq for PathsResponse
Auto Trait Implementations§
impl Freeze for PathsResponse
impl RefUnwindSafe for PathsResponse
impl Send for PathsResponse
impl Sync for PathsResponse
impl Unpin for PathsResponse
impl UnsafeUnpin for PathsResponse
impl UnwindSafe for PathsResponse
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