pub struct RouteWithCursor {
pub cursor: Option<String>,
pub route: Option<Route>,
}Expand description
RouteWithCursor
JSON schema
{
"type": "object",
"properties": {
"cursor": {
"type": "string"
},
"route": {
"$ref": "#/components/schemas/route"
}
}
}Fields§
§cursor: Option<String>§route: Option<Route>Trait Implementations§
Source§impl Clone for RouteWithCursor
impl Clone for RouteWithCursor
Source§fn clone(&self) -> RouteWithCursor
fn clone(&self) -> RouteWithCursor
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 RouteWithCursor
impl Debug for RouteWithCursor
Source§impl Default for RouteWithCursor
impl Default for RouteWithCursor
Source§impl<'de> Deserialize<'de> for RouteWithCursor
impl<'de> Deserialize<'de> for RouteWithCursor
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 RouteWithCursor
impl RefUnwindSafe for RouteWithCursor
impl Send for RouteWithCursor
impl Sync for RouteWithCursor
impl Unpin for RouteWithCursor
impl UnsafeUnpin for RouteWithCursor
impl UnwindSafe for RouteWithCursor
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