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