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