Enum rust_texas::document::DocumentClassType
source · pub enum DocumentClassType {
Article,
Part,
Report,
Book,
}Expand description
Currently, only these four types are supported. There is also nothing preventing you from putting a \part{} in a document of class “part”, but latex will show an error. If you want those restrictions to be implemented, please put up an issue
Variants§
Trait Implementations§
source§impl Clone for DocumentClassType
impl Clone for DocumentClassType
source§fn clone(&self) -> DocumentClassType
fn clone(&self) -> DocumentClassType
Returns a copy 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 DocumentClassType
impl Debug for DocumentClassType
source§impl Display for DocumentClassType
impl Display for DocumentClassType
Auto Trait Implementations§
impl RefUnwindSafe for DocumentClassType
impl Send for DocumentClassType
impl Sync for DocumentClassType
impl Unpin for DocumentClassType
impl UnwindSafe for DocumentClassType
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