pub struct LocalHistoryProjection {
pub projector_id: String,
pub store_label: String,
pub receipts: Vec<LocalHistoryReceipt>,
pub pending_runs: Vec<PausedRunSummary>,
}Fields§
§projector_id: String§store_label: String§receipts: Vec<LocalHistoryReceipt>§pending_runs: Vec<PausedRunSummary>Trait Implementations§
Source§impl Clone for LocalHistoryProjection
impl Clone for LocalHistoryProjection
Source§fn clone(&self) -> LocalHistoryProjection
fn clone(&self) -> LocalHistoryProjection
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 LocalHistoryProjection
impl Debug for LocalHistoryProjection
Source§impl<'de> Deserialize<'de> for LocalHistoryProjection
impl<'de> Deserialize<'de> for LocalHistoryProjection
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
impl Eq for LocalHistoryProjection
Source§impl PartialEq for LocalHistoryProjection
impl PartialEq for LocalHistoryProjection
Source§fn eq(&self, other: &LocalHistoryProjection) -> bool
fn eq(&self, other: &LocalHistoryProjection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalHistoryProjection
impl Serialize for LocalHistoryProjection
impl StructuralPartialEq for LocalHistoryProjection
Auto Trait Implementations§
impl Freeze for LocalHistoryProjection
impl RefUnwindSafe for LocalHistoryProjection
impl Send for LocalHistoryProjection
impl Sync for LocalHistoryProjection
impl Unpin for LocalHistoryProjection
impl UnsafeUnpin for LocalHistoryProjection
impl UnwindSafe for LocalHistoryProjection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.