enum AddendumLine {
Decoded {
kind: AddendumKind,
name: String,
args: ExtensionArgs,
},
DecodeError {
kind: AddendumKind,
error: ExtensionError,
},
}Variants§
Implementations§
Source§impl AddendumLine
impl AddendumLine
fn extension_table( result: Result<(String, ExtensionArgs), ExtensionError>, ) -> Self
fn enhancement<S: Scope>(ctx: &S, detail: AnyRef<'_>) -> Self
fn optimization<S: Scope>(ctx: &S, detail: AnyRef<'_>) -> Self
fn from_decode_result( kind: AddendumKind, result: Result<(String, ExtensionArgs), ExtensionError>, ) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AddendumLine
impl RefUnwindSafe for AddendumLine
impl Send for AddendumLine
impl Sync for AddendumLine
impl Unpin for AddendumLine
impl UnsafeUnpin for AddendumLine
impl UnwindSafe for AddendumLine
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