pub struct OpInfo {
pub name: &'static str,
pub aliases: &'static [&'static str],
pub tag: &'static str,
pub description: &'static str,
pub fields: Vec<FieldInfo>,
}Expand description
One callable op: its canonical name, aliases, op tag, ordered fields, and a one-line description.
Fields§
§name: &'static str§aliases: &'static [&'static str]§tag: &'static str§description: &'static str§fields: Vec<FieldInfo>Auto Trait Implementations§
impl Freeze for OpInfo
impl RefUnwindSafe for OpInfo
impl Send for OpInfo
impl Sync for OpInfo
impl Unpin for OpInfo
impl UnsafeUnpin for OpInfo
impl UnwindSafe for OpInfo
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