Skip to main content

IntegratorBinding

Struct IntegratorBinding 

Source
pub struct IntegratorBinding { /* private fields */ }
Expand description

One integrator’s standing claim to drive a ceremony or a system run.

Fenced rather than merely replaced: a host that was swapped out keeps its old fence, and every call it makes afterwards is refused by comparison instead of racing the host that took its place.

Implementations§

Source§

impl IntegratorBinding

Source

pub const fn new( id: IntegratorBindingId, scope: IntegratorScope, role_id: RoleId, destination: HostDestination, incarnation: HostAgentIncarnation, bound_at: OffsetDateTime, ) -> Self

A first binding for a scope, at the opening fence.

Source

pub const fn id(&self) -> &IntegratorBindingId

Source

pub const fn scope(&self) -> &IntegratorScope

Source

pub fn scope_key(&self) -> IntegratorScopeKey

Source

pub const fn role_id(&self) -> &RoleId

Source

pub const fn destination(&self) -> &HostDestination

Source

pub const fn incarnation(&self) -> &HostAgentIncarnation

Source

pub const fn fence(&self) -> IntegratorFence

Source

pub const fn bound_at(&self) -> OffsetDateTime

Source

pub const fn revoked_at(&self) -> Option<OffsetDateTime>

Source

pub const fn progress(&self) -> LoopProgressMark

What this binding’s loop saw the last time it asked.

Source

pub fn observing(&self, progress: LoopProgressMark) -> Self

The same binding, having asked once more.

Source

pub const fn is_live(&self) -> bool

Source

pub fn admits( &self, incarnation: &HostAgentIncarnation, fence: IntegratorFence, ) -> bool

Whether a caller’s claimed generation is the current one.

Source

pub fn delivery_target(&self) -> HostDeliveryTarget

Where deliveries for this binding are addressed.

Source

pub fn replacing(&self, replacement: &Self) -> Self

The binding that takes this one’s place, one fence higher.

Source

pub fn revoked(&self, at: OffsetDateTime) -> Self

The same binding, no longer in force.

Trait Implementations§

Source§

impl Clone for IntegratorBinding

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for IntegratorBinding

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for IntegratorBinding

Source§

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 Eq for IntegratorBinding

Source§

impl PartialEq for IntegratorBinding

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for IntegratorBinding

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for IntegratorBinding

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.