#[non_exhaustive]pub struct RepairPendingSession {
pub harness_id: String,
pub harness_session_id: String,
}Expand description
One harness session whose projection rebuild did not complete synchronously during a repair.
Models the contract’s RepairPendingSession schema.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.harness_id: StringThe contract’s harness_id.
harness_session_id: StringThe contract’s harness_session_id.
Trait Implementations§
Source§impl Clone for RepairPendingSession
impl Clone for RepairPendingSession
Source§fn clone(&self) -> RepairPendingSession
fn clone(&self) -> RepairPendingSession
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 ContractModel for RepairPendingSession
impl ContractModel for RepairPendingSession
Source§impl Debug for RepairPendingSession
impl Debug for RepairPendingSession
Source§impl Default for RepairPendingSession
impl Default for RepairPendingSession
Source§fn default() -> RepairPendingSession
fn default() -> RepairPendingSession
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepairPendingSessionwhere
RepairPendingSession: Default,
impl<'de> Deserialize<'de> for RepairPendingSessionwhere
RepairPendingSession: Default,
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 RepairPendingSession
impl PartialEq for RepairPendingSession
Source§impl Serialize for RepairPendingSession
impl Serialize for RepairPendingSession
impl StructuralPartialEq for RepairPendingSession
Auto Trait Implementations§
impl Freeze for RepairPendingSession
impl RefUnwindSafe for RepairPendingSession
impl Send for RepairPendingSession
impl Sync for RepairPendingSession
impl Unpin for RepairPendingSession
impl UnsafeUnpin for RepairPendingSession
impl UnwindSafe for RepairPendingSession
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