pub struct CheckpointDraft {
pub hub_id: String,
pub sequence: u64,
pub previous_checkpoint: Option<String>,
pub created_at: String,
}Fields§
§hub_id: String§sequence: u64§previous_checkpoint: Option<String>§created_at: StringTrait Implementations§
Source§impl Clone for CheckpointDraft
impl Clone for CheckpointDraft
Source§fn clone(&self) -> CheckpointDraft
fn clone(&self) -> CheckpointDraft
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 moreAuto Trait Implementations§
impl Freeze for CheckpointDraft
impl RefUnwindSafe for CheckpointDraft
impl Send for CheckpointDraft
impl Sync for CheckpointDraft
impl Unpin for CheckpointDraft
impl UnsafeUnpin for CheckpointDraft
impl UnwindSafe for CheckpointDraft
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