pub struct Machine<L: Law, P: Phase, D: Data> {
pub _law: PhantomData<L>,
pub phase: P,
pub data: D,
}Expand description
The zero-cost typestate machine container.
Fields§
§_law: PhantomData<L>§phase: P§data: DImplementations§
Source§impl Machine<AccessAdmissionLaw, Uninitialized, EmptyData>
impl Machine<AccessAdmissionLaw, Uninitialized, EmptyData>
Sourcepub fn admit_initialize(
self,
client_caps: Value,
) -> Machine<AccessAdmissionLaw, Initializing, InitializingData>
pub fn admit_initialize( self, client_caps: Value, ) -> Machine<AccessAdmissionLaw, Initializing, InitializingData>
Transitions from Uninitialized to Initializing using the client parameters.
Source§impl Machine<AccessAdmissionLaw, Initializing, InitializingData>
impl Machine<AccessAdmissionLaw, Initializing, InitializingData>
Sourcepub fn admit_initialized(
self,
server_caps: Value,
) -> Machine<AccessAdmissionLaw, Initialized, InitializedData>
pub fn admit_initialized( self, server_caps: Value, ) -> Machine<AccessAdmissionLaw, Initialized, InitializedData>
Transitions from Initializing to Initialized once server capabilities are registered.
Source§impl Machine<AccessAdmissionLaw, Initialized, InitializedData>
impl Machine<AccessAdmissionLaw, Initialized, InitializedData>
Sourcepub fn admit_shutdown(self) -> Machine<AccessAdmissionLaw, ShutDown, EmptyData>
pub fn admit_shutdown(self) -> Machine<AccessAdmissionLaw, ShutDown, EmptyData>
Transitions from Initialized to ShutDown.
Source§impl Machine<AccessAdmissionLaw, ShutDown, EmptyData>
impl Machine<AccessAdmissionLaw, ShutDown, EmptyData>
Sourcepub fn admit_exit(self) -> Machine<AccessAdmissionLaw, Exited, EmptyData>
pub fn admit_exit(self) -> Machine<AccessAdmissionLaw, Exited, EmptyData>
Transitions from ShutDown to Exited.
Source§impl Machine<GraphAdmissionLaw, RAW, RawData>
impl Machine<GraphAdmissionLaw, RAW, RawData>
pub fn admit_candidate( self, snapshot_id: &str, ) -> Result<Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>, GraphAdmissionError>
Source§impl Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>
impl Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>
pub fn admit_admitted( self, _store: &Store, graph_name: GraphName, receipt: CryptographicReceipt, ) -> Result<Machine<GraphAdmissionLaw, ADMITTED, AdmittedData>, GraphAdmissionError>
pub fn admit_refuse( self, report: VerificationReport, ) -> Machine<GraphAdmissionLaw, REFUSED, RefusedData>
pub fn admit_quarantine( self, missing_dependencies: Vec<String>, ) -> Machine<GraphAdmissionLaw, QUARANTINED, QuarantinedData>
pub fn admit_replay( self, graph_name: GraphName, receipt: CryptographicReceipt, ) -> Machine<GraphAdmissionLaw, REPLAYED, ReplayedData>
Source§impl Machine<GraphAdmissionLaw, ADMITTED, AdmittedData>
impl Machine<GraphAdmissionLaw, ADMITTED, AdmittedData>
pub fn admit_supersede( self, superseded_by: GraphName, ) -> Machine<GraphAdmissionLaw, SUPERSEDED, SupersededData>
Source§impl Machine<GraphAdmissionLaw, QUARANTINED, QuarantinedData>
impl Machine<GraphAdmissionLaw, QUARANTINED, QuarantinedData>
pub fn into_candidate( self, graph_hash: String, ) -> Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>
Trait Implementations§
Source§impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, RAW, RawData>
impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, RAW, RawData>
Source§fn candidate(&self) -> GraduationCandidate
fn candidate(&self) -> GraduationCandidate
self. Read morefn is_grounded(&self) -> bool
Source§impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>
impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>
Source§fn candidate(&self) -> GraduationCandidate
fn candidate(&self) -> GraduationCandidate
self. Read morefn is_grounded(&self) -> bool
Source§impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, ADMITTED, AdmittedData>
impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, ADMITTED, AdmittedData>
Source§fn candidate(&self) -> GraduationCandidate
fn candidate(&self) -> GraduationCandidate
self. Read morefn is_grounded(&self) -> bool
Source§impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, REFUSED, RefusedData>
impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, REFUSED, RefusedData>
Source§fn candidate(&self) -> GraduationCandidate
fn candidate(&self) -> GraduationCandidate
self. Read morefn is_grounded(&self) -> bool
Source§impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, QUARANTINED, QuarantinedData>
impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, QUARANTINED, QuarantinedData>
Source§fn candidate(&self) -> GraduationCandidate
fn candidate(&self) -> GraduationCandidate
self. Read morefn is_grounded(&self) -> bool
Source§impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, SUPERSEDED, SupersededData>
impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, SUPERSEDED, SupersededData>
Source§fn candidate(&self) -> GraduationCandidate
fn candidate(&self) -> GraduationCandidate
self. Read morefn is_grounded(&self) -> bool
Source§impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, REPLAYED, ReplayedData>
impl GraduateToWasm4pm for Machine<GraphAdmissionLaw, REPLAYED, ReplayedData>
Source§fn candidate(&self) -> GraduationCandidate
fn candidate(&self) -> GraduationCandidate
self. Read morefn is_grounded(&self) -> bool
Source§impl TypestateKernel<AccessAdmissionLaw, Exited, EmptyData> for Machine<AccessAdmissionLaw, Exited, EmptyData>
impl TypestateKernel<AccessAdmissionLaw, Exited, EmptyData> for Machine<AccessAdmissionLaw, Exited, EmptyData>
type Input = ()
type OutputPhase = Exited
type OutputData = EmptyData
type Receipt = Receipt
Source§fn validate(
&self,
_input: &Self::Input,
) -> Result<(), <AccessAdmissionLaw as Law>::Error>
fn validate( &self, _input: &Self::Input, ) -> Result<(), <AccessAdmissionLaw as Law>::Error>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
_input: Self::Input,
) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
fn admit( self, _input: Self::Input, ) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
Source§impl TypestateKernel<AccessAdmissionLaw, Initialized, InitializedData> for Machine<AccessAdmissionLaw, Initialized, InitializedData>
impl TypestateKernel<AccessAdmissionLaw, Initialized, InitializedData> for Machine<AccessAdmissionLaw, Initialized, InitializedData>
type Input = ()
type OutputPhase = ShutDown
type OutputData = EmptyData
type Receipt = Receipt
Source§fn validate(
&self,
_input: &Self::Input,
) -> Result<(), <AccessAdmissionLaw as Law>::Error>
fn validate( &self, _input: &Self::Input, ) -> Result<(), <AccessAdmissionLaw as Law>::Error>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
fn admit( self, input: Self::Input, ) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> InitializedData
fn exit(self) -> InitializedData
Source§impl TypestateKernel<AccessAdmissionLaw, Initializing, InitializingData> for Machine<AccessAdmissionLaw, Initializing, InitializingData>
impl TypestateKernel<AccessAdmissionLaw, Initializing, InitializingData> for Machine<AccessAdmissionLaw, Initializing, InitializingData>
type Input = Value
type OutputPhase = Initialized
type OutputData = InitializedData
type Receipt = Receipt
Source§fn validate(
&self,
_input: &Self::Input,
) -> Result<(), <AccessAdmissionLaw as Law>::Error>
fn validate( &self, _input: &Self::Input, ) -> Result<(), <AccessAdmissionLaw as Law>::Error>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
fn admit( self, input: Self::Input, ) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> InitializingData
fn exit(self) -> InitializingData
Source§impl TypestateKernel<AccessAdmissionLaw, ShutDown, EmptyData> for Machine<AccessAdmissionLaw, ShutDown, EmptyData>
impl TypestateKernel<AccessAdmissionLaw, ShutDown, EmptyData> for Machine<AccessAdmissionLaw, ShutDown, EmptyData>
type Input = ()
type OutputPhase = Exited
type OutputData = EmptyData
type Receipt = Receipt
Source§fn validate(
&self,
_input: &Self::Input,
) -> Result<(), <AccessAdmissionLaw as Law>::Error>
fn validate( &self, _input: &Self::Input, ) -> Result<(), <AccessAdmissionLaw as Law>::Error>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
fn admit( self, input: Self::Input, ) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
Source§impl TypestateKernel<AccessAdmissionLaw, Uninitialized, EmptyData> for Machine<AccessAdmissionLaw, Uninitialized, EmptyData>
impl TypestateKernel<AccessAdmissionLaw, Uninitialized, EmptyData> for Machine<AccessAdmissionLaw, Uninitialized, EmptyData>
type Input = Value
type OutputPhase = Initializing
type OutputData = InitializingData
type Receipt = Receipt
Source§fn validate(
&self,
_input: &Self::Input,
) -> Result<(), <AccessAdmissionLaw as Law>::Error>
fn validate( &self, _input: &Self::Input, ) -> Result<(), <AccessAdmissionLaw as Law>::Error>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
fn admit( self, input: Self::Input, ) -> Result<Machine<AccessAdmissionLaw, Self::OutputPhase, Self::OutputData>, <AccessAdmissionLaw as Law>::Error>
Source§impl TypestateKernel<GraphAdmissionLaw, ADMITTED, AdmittedData> for Machine<GraphAdmissionLaw, ADMITTED, AdmittedData>
impl TypestateKernel<GraphAdmissionLaw, ADMITTED, AdmittedData> for Machine<GraphAdmissionLaw, ADMITTED, AdmittedData>
type Input = GraphName
type OutputPhase = SUPERSEDED
type OutputData = SupersededData
type Receipt = CryptographicReceipt
Source§fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
fn admit( self, input: Self::Input, ) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> AdmittedData
fn exit(self) -> AdmittedData
Source§impl TypestateKernel<GraphAdmissionLaw, CANDIDATE, CandidateData> for Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>
impl TypestateKernel<GraphAdmissionLaw, CANDIDATE, CandidateData> for Machine<GraphAdmissionLaw, CANDIDATE, CandidateData>
type Input = CandidateAdmitInput
type OutputPhase = ADMITTED
type OutputData = AdmittedData
type Receipt = CryptographicReceipt
Source§fn validate(&self, input: &Self::Input) -> Result<(), GraphAdmissionError>
fn validate(&self, input: &Self::Input) -> Result<(), GraphAdmissionError>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
fn admit( self, input: Self::Input, ) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> CandidateData
fn exit(self) -> CandidateData
Source§impl TypestateKernel<GraphAdmissionLaw, QUARANTINED, QuarantinedData> for Machine<GraphAdmissionLaw, QUARANTINED, QuarantinedData>
impl TypestateKernel<GraphAdmissionLaw, QUARANTINED, QuarantinedData> for Machine<GraphAdmissionLaw, QUARANTINED, QuarantinedData>
type Input = String
type OutputPhase = CANDIDATE
type OutputData = CandidateData
type Receipt = CryptographicReceipt
Source§fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
fn admit( self, input: Self::Input, ) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> QuarantinedData
fn exit(self) -> QuarantinedData
Source§impl TypestateKernel<GraphAdmissionLaw, RAW, RawData> for Machine<GraphAdmissionLaw, RAW, RawData>
impl TypestateKernel<GraphAdmissionLaw, RAW, RawData> for Machine<GraphAdmissionLaw, RAW, RawData>
type Input = String
type OutputPhase = CANDIDATE
type OutputData = CandidateData
type Receipt = CryptographicReceipt
Source§fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
fn admit( self, input: Self::Input, ) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
Source§impl TypestateKernel<GraphAdmissionLaw, REFUSED, RefusedData> for Machine<GraphAdmissionLaw, REFUSED, RefusedData>
impl TypestateKernel<GraphAdmissionLaw, REFUSED, RefusedData> for Machine<GraphAdmissionLaw, REFUSED, RefusedData>
type Input = ()
type OutputPhase = REFUSED
type OutputData = RefusedData
type Receipt = CryptographicReceipt
Source§fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
fn admit( self, input: Self::Input, ) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> RefusedData
fn exit(self) -> RefusedData
Source§impl TypestateKernel<GraphAdmissionLaw, REPLAYED, ReplayedData> for Machine<GraphAdmissionLaw, REPLAYED, ReplayedData>
impl TypestateKernel<GraphAdmissionLaw, REPLAYED, ReplayedData> for Machine<GraphAdmissionLaw, REPLAYED, ReplayedData>
type Input = ()
type OutputPhase = REPLAYED
type OutputData = ReplayedData
type Receipt = CryptographicReceipt
Source§fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
fn admit( self, input: Self::Input, ) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> ReplayedData
fn exit(self) -> ReplayedData
Source§impl TypestateKernel<GraphAdmissionLaw, SUPERSEDED, SupersededData> for Machine<GraphAdmissionLaw, SUPERSEDED, SupersededData>
impl TypestateKernel<GraphAdmissionLaw, SUPERSEDED, SupersededData> for Machine<GraphAdmissionLaw, SUPERSEDED, SupersededData>
type Input = ()
type OutputPhase = SUPERSEDED
type OutputData = SupersededData
type Receipt = CryptographicReceipt
Source§fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
fn validate(&self, _input: &Self::Input) -> Result<(), GraphAdmissionError>
Source§fn select(&self, _input: &Self::Input) -> Self::OutputPhase
fn select(&self, _input: &Self::Input) -> Self::OutputPhase
Source§fn admit(
self,
input: Self::Input,
) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
fn admit( self, input: Self::Input, ) -> Result<Machine<GraphAdmissionLaw, Self::OutputPhase, Self::OutputData>, GraphAdmissionError>
Source§fn receipt(&self) -> Self::Receipt
fn receipt(&self) -> Self::Receipt
Source§fn exit(self) -> SupersededData
fn exit(self) -> SupersededData
Auto Trait Implementations§
impl<L, P, D> Freeze for Machine<L, P, D>
impl<L, P, D> RefUnwindSafe for Machine<L, P, D>
impl<L, P, D> Send for Machine<L, P, D>
impl<L, P, D> Sync for Machine<L, P, D>
impl<L, P, D> Unpin for Machine<L, P, D>
impl<L, P, D> UnsafeUnpin for Machine<L, P, D>where
P: UnsafeUnpin,
D: UnsafeUnpin,
impl<L, P, D> UnwindSafe for Machine<L, P, D>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> EvidenceKind for T
impl<T> EvidenceKind for T
default fn kind_label(&self) -> &'static str
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>
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>
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 moreSource§impl<T> OnDrop for T
impl<T> OnDrop for T
Source§fn on_drop<F: FnOnce()>(self, on_drop: F) -> (Self, CancellationGuard<F>)
fn on_drop<F: FnOnce()>(self, on_drop: F) -> (Self, CancellationGuard<F>)
CancellationGuard that will call the given
closure when dropped.Source§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi Quirk value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);