pub struct CardSpec {
pub key: &'static str,
pub summary: &'static str,
pub operations: &'static [&'static str],
pub data_forms: &'static [&'static str],
pub limits: &'static str,
}Expand description
A browse/help card descriptor for one discrete family or operation group.
Fields§
§key: &'static strStable card key (for example discrete/graph).
summary: &'static strOne-line summary.
operations: &'static [&'static str]Operation names exposed by this family.
data_forms: &'static [&'static str]Data forms / value types this family deals in.
limits: &'static strKnown limits and capability needs, in prose.
Trait Implementations§
impl Copy for CardSpec
impl Eq for CardSpec
impl StructuralPartialEq for CardSpec
Auto Trait Implementations§
impl Freeze for CardSpec
impl RefUnwindSafe for CardSpec
impl Send for CardSpec
impl Sync for CardSpec
impl Unpin for CardSpec
impl UnsafeUnpin for CardSpec
impl UnwindSafe for CardSpec
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