pub struct SynchronizerTime {
pub synchronizer_id: String,
pub record_time: Option<String>,
}
Fields§
§synchronizer_id: String
The id of the synchronizer. Required
record_time: Option<String>
All commands with a maximum record time below this value MUST be considered lost if their completion has not arrived before this checkpoint. Required
Implementations§
Source§impl SynchronizerTime
impl SynchronizerTime
pub fn new(synchronizer_id: String) -> SynchronizerTime
Trait Implementations§
Source§impl Clone for SynchronizerTime
impl Clone for SynchronizerTime
Source§fn clone(&self) -> SynchronizerTime
fn clone(&self) -> SynchronizerTime
Returns a duplicate of the value. Read more
1.0.0 · 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 SynchronizerTime
impl Debug for SynchronizerTime
Source§impl Default for SynchronizerTime
impl Default for SynchronizerTime
Source§fn default() -> SynchronizerTime
fn default() -> SynchronizerTime
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SynchronizerTime
impl<'de> Deserialize<'de> for SynchronizerTime
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 SynchronizerTime
impl PartialEq for SynchronizerTime
Source§impl Serialize for SynchronizerTime
impl Serialize for SynchronizerTime
impl StructuralPartialEq for SynchronizerTime
Auto Trait Implementations§
impl Freeze for SynchronizerTime
impl RefUnwindSafe for SynchronizerTime
impl Send for SynchronizerTime
impl Sync for SynchronizerTime
impl Unpin for SynchronizerTime
impl UnwindSafe for SynchronizerTime
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