pub enum ProductionComposition {
Admitted(AdmittedComposedSurface),
Fallback {
surface: Surface,
rendered: String,
reason: String,
},
}Expand description
Result of the real Agent/provider composition path. Fallbacks are always
host-built and read-only; only the Admitted variant exposes a composed
action surface after negotiated store admission.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ProductionComposition
impl Clone for ProductionComposition
Source§fn clone(&self) -> ProductionComposition
fn clone(&self) -> ProductionComposition
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 moreAuto Trait Implementations§
impl Freeze for ProductionComposition
impl RefUnwindSafe for ProductionComposition
impl Send for ProductionComposition
impl Sync for ProductionComposition
impl Unpin for ProductionComposition
impl UnsafeUnpin for ProductionComposition
impl UnwindSafe for ProductionComposition
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