pub struct UpdateNew {
pub subject_id: DigestIdentifier,
pub witnesses: HashSet<PublicKey>,
pub update_type: UpdateType,
pub network: Arc<NetworkSender>,
pub our_sn: Option<u64>,
pub subject_kind_hint: Option<UpdateSubjectKind>,
pub round_retry_interval_secs: u64,
pub max_round_retries: usize,
pub witness_retry_count: usize,
pub witness_retry_interval_secs: u64,
}Fields§
§subject_id: DigestIdentifier§witnesses: HashSet<PublicKey>§update_type: UpdateType§network: Arc<NetworkSender>§our_sn: Option<u64>§subject_kind_hint: Option<UpdateSubjectKind>§round_retry_interval_secs: u64§max_round_retries: usize§witness_retry_count: usize§witness_retry_interval_secs: u64Auto Trait Implementations§
impl Freeze for UpdateNew
impl RefUnwindSafe for UpdateNew
impl Send for UpdateNew
impl Sync for UpdateNew
impl Unpin for UpdateNew
impl UnsafeUnpin for UpdateNew
impl UnwindSafe for UpdateNew
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more