#[non_exhaustive]pub enum RdSexprOptionKey {
Stage,
Results,
Echo,
Eval,
KeepSource,
StripWhite,
Width,
Height,
Fig,
}Expand description
The recognized names in a \Sexpr option list.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Stage
Evaluation stage.
Results
Results rendering mode.
Echo
Echo source code.
Eval
Evaluate the expression.
KeepSource
Keep source code.
StripWhite
Strip whitespace.
Width
Figure width.
Height
Figure height.
Fig
Figure number.
Implementations§
Trait Implementations§
Source§impl Clone for RdSexprOptionKey
impl Clone for RdSexprOptionKey
Source§fn clone(&self) -> RdSexprOptionKey
fn clone(&self) -> RdSexprOptionKey
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 moreimpl Copy for RdSexprOptionKey
Source§impl Debug for RdSexprOptionKey
impl Debug for RdSexprOptionKey
impl Eq for RdSexprOptionKey
Source§impl Hash for RdSexprOptionKey
impl Hash for RdSexprOptionKey
Source§impl PartialEq for RdSexprOptionKey
impl PartialEq for RdSexprOptionKey
impl StructuralPartialEq for RdSexprOptionKey
Auto Trait Implementations§
impl Freeze for RdSexprOptionKey
impl RefUnwindSafe for RdSexprOptionKey
impl Send for RdSexprOptionKey
impl Sync for RdSexprOptionKey
impl Unpin for RdSexprOptionKey
impl UnsafeUnpin for RdSexprOptionKey
impl UnwindSafe for RdSexprOptionKey
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