pub struct Meta {
pub name: String,
pub description: String,
pub axe_version: String,
pub version: Option<String>,
}Expand description
Required extension metadata.
Fields§
§name: StringExtension name ([a-z0-9-], max 64 chars).
description: StringHuman-readable description (max 1024 chars).
axe_version: StringAXE spec version the author wrote against.
version: Option<String>Extension’s own version (semver, optional).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnsafeUnpin for Meta
impl UnwindSafe for Meta
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