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