pub struct InternalStepVectorForOneParticipant<StepT: Serialize + Deserialize> {
pub delta_tick_id: u8,
pub steps: Vec<StepT>,
}
Fields§
§delta_tick_id: u8
§steps: Vec<StepT>
Trait Implementations§
Source§impl<StepT: Clone + Serialize + Deserialize> Clone for InternalStepVectorForOneParticipant<StepT>
impl<StepT: Clone + Serialize + Deserialize> Clone for InternalStepVectorForOneParticipant<StepT>
Source§fn clone(&self) -> InternalStepVectorForOneParticipant<StepT>
fn clone(&self) -> InternalStepVectorForOneParticipant<StepT>
Returns a copy 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<StepT: Debug + Serialize + Deserialize> Debug for InternalStepVectorForOneParticipant<StepT>
impl<StepT: Debug + Serialize + Deserialize> Debug for InternalStepVectorForOneParticipant<StepT>
Source§impl<StepT: Serialize + Deserialize + Display> Display for InternalStepVectorForOneParticipant<StepT>
impl<StepT: Serialize + Deserialize + Display> Display for InternalStepVectorForOneParticipant<StepT>
Source§impl<StepT: PartialEq + Serialize + Deserialize> PartialEq for InternalStepVectorForOneParticipant<StepT>
impl<StepT: PartialEq + Serialize + Deserialize> PartialEq for InternalStepVectorForOneParticipant<StepT>
Source§fn eq(&self, other: &InternalStepVectorForOneParticipant<StepT>) -> bool
fn eq(&self, other: &InternalStepVectorForOneParticipant<StepT>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<StepT: Eq + Serialize + Deserialize> Eq for InternalStepVectorForOneParticipant<StepT>
impl<StepT: Serialize + Deserialize> StructuralPartialEq for InternalStepVectorForOneParticipant<StepT>
Auto Trait Implementations§
impl<StepT> Freeze for InternalStepVectorForOneParticipant<StepT>
impl<StepT> RefUnwindSafe for InternalStepVectorForOneParticipant<StepT>where
StepT: RefUnwindSafe,
impl<StepT> Send for InternalStepVectorForOneParticipant<StepT>where
StepT: Send,
impl<StepT> Sync for InternalStepVectorForOneParticipant<StepT>where
StepT: Sync,
impl<StepT> Unpin for InternalStepVectorForOneParticipant<StepT>where
StepT: Unpin,
impl<StepT> UnwindSafe for InternalStepVectorForOneParticipant<StepT>where
StepT: UnwindSafe,
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