pub struct GuardInfo {
pub name: String,
pub required_feature: Option<String>,
pub required_tier: String,
}Expand description
Information about a registered guard type.
Fields§
§name: StringGuard type name.
required_feature: Option<String>Required feature (None for community guards).
required_tier: StringRequired license tier.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GuardInfo
impl RefUnwindSafe for GuardInfo
impl Send for GuardInfo
impl Sync for GuardInfo
impl Unpin for GuardInfo
impl UnwindSafe for GuardInfo
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