pub struct ProjectionCheckpoint {
pub projection_name: String,
pub checkpoint_token: String,
}Expand description
Projection checkpoint.
Fields§
§projection_name: String§checkpoint_token: StringTrait Implementations§
Source§impl Clone for ProjectionCheckpoint
impl Clone for ProjectionCheckpoint
Source§fn clone(&self) -> ProjectionCheckpoint
fn clone(&self) -> ProjectionCheckpoint
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 ProjectionCheckpoint
impl Debug for ProjectionCheckpoint
Source§impl<'de> Deserialize<'de> for ProjectionCheckpoint
impl<'de> Deserialize<'de> for ProjectionCheckpoint
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 ProjectionCheckpoint
impl PartialEq for ProjectionCheckpoint
Source§fn eq(&self, other: &ProjectionCheckpoint) -> bool
fn eq(&self, other: &ProjectionCheckpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectionCheckpoint
impl Serialize for ProjectionCheckpoint
impl Eq for ProjectionCheckpoint
impl StructuralPartialEq for ProjectionCheckpoint
Auto Trait Implementations§
impl Freeze for ProjectionCheckpoint
impl RefUnwindSafe for ProjectionCheckpoint
impl Send for ProjectionCheckpoint
impl Sync for ProjectionCheckpoint
impl Unpin for ProjectionCheckpoint
impl UnsafeUnpin for ProjectionCheckpoint
impl UnwindSafe for ProjectionCheckpoint
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