#[non_exhaustive]pub struct TagDirective {
pub handle: String,
pub prefix: String,
}Expand description
The tag directive data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.handle: StringThe tag handle.
prefix: StringThe tag prefix.
Trait Implementations§
Source§impl Clone for TagDirective
impl Clone for TagDirective
Source§fn clone(&self) -> TagDirective
fn clone(&self) -> TagDirective
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TagDirective
impl Debug for TagDirective
Source§impl PartialEq for TagDirective
impl PartialEq for TagDirective
Source§fn eq(&self, other: &TagDirective) -> bool
fn eq(&self, other: &TagDirective) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TagDirective
Auto Trait Implementations§
impl Freeze for TagDirective
impl RefUnwindSafe for TagDirective
impl Send for TagDirective
impl Sync for TagDirective
impl Unpin for TagDirective
impl UnsafeUnpin for TagDirective
impl UnwindSafe for TagDirective
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