pub struct EmptyGlossary;
Expand description
Empty glossary that does not recognize any command name as a declaration utility
When this glossary is used, the parser recognizes no command name as a declaration utility. Note that this does not conform to POSIX.
Trait Implementations§
Source§impl Clone for EmptyGlossary
impl Clone for EmptyGlossary
Source§fn clone(&self) -> EmptyGlossary
fn clone(&self) -> EmptyGlossary
Returns a duplicate of the value. Read more
1.0.0 · 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 EmptyGlossary
impl Debug for EmptyGlossary
Source§impl Default for EmptyGlossary
impl Default for EmptyGlossary
Source§fn default() -> EmptyGlossary
fn default() -> EmptyGlossary
Returns the “default value” for a type. Read more
Source§impl Glossary for EmptyGlossary
impl Glossary for EmptyGlossary
Source§impl Hash for EmptyGlossary
impl Hash for EmptyGlossary
Source§impl PartialEq for EmptyGlossary
impl PartialEq for EmptyGlossary
impl Eq for EmptyGlossary
impl StructuralPartialEq for EmptyGlossary
Auto Trait Implementations§
impl Freeze for EmptyGlossary
impl RefUnwindSafe for EmptyGlossary
impl Send for EmptyGlossary
impl Sync for EmptyGlossary
impl Unpin for EmptyGlossary
impl UnwindSafe for EmptyGlossary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more