pub struct ResponseWithContinuationLab {
pub value: Vec<Lab>,
pub next_link: Option<String>,
}Expand description
The response of a list operation.
Fields§
§value: Vec<Lab>Results of the list operation.
next_link: Option<String>Link for next set of results.
Implementations§
Trait Implementations§
Source§impl Clone for ResponseWithContinuationLab
impl Clone for ResponseWithContinuationLab
Source§fn clone(&self) -> ResponseWithContinuationLab
fn clone(&self) -> ResponseWithContinuationLab
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 Continuable for ResponseWithContinuationLab
impl Continuable for ResponseWithContinuationLab
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl Debug for ResponseWithContinuationLab
impl Debug for ResponseWithContinuationLab
Source§impl Default for ResponseWithContinuationLab
impl Default for ResponseWithContinuationLab
Source§fn default() -> ResponseWithContinuationLab
fn default() -> ResponseWithContinuationLab
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResponseWithContinuationLab
impl<'de> Deserialize<'de> for ResponseWithContinuationLab
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 ResponseWithContinuationLab
impl PartialEq for ResponseWithContinuationLab
Source§fn eq(&self, other: &ResponseWithContinuationLab) -> bool
fn eq(&self, other: &ResponseWithContinuationLab) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResponseWithContinuationLab
Auto Trait Implementations§
impl Freeze for ResponseWithContinuationLab
impl RefUnwindSafe for ResponseWithContinuationLab
impl Send for ResponseWithContinuationLab
impl Sync for ResponseWithContinuationLab
impl Unpin for ResponseWithContinuationLab
impl UnsafeUnpin for ResponseWithContinuationLab
impl UnwindSafe for ResponseWithContinuationLab
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