Enum okane_core::repl::AccountDetail
source · pub enum AccountDetail {
Comment(String),
Note(String),
Alias(String),
}Expand description
Sub directives for “account” directive.
Variants§
Comment(String)
Comment is a pure comment without any semantics, similar to TopLevelComment.
Note(String)
Note is a “note” sub-directive. Usually it would be one-line.
Alias(String)
Declare the given string is an alias for the declared account.
Trait Implementations§
source§impl Debug for AccountDetail
impl Debug for AccountDetail
source§impl Display for AccountDetail
impl Display for AccountDetail
source§impl PartialEq for AccountDetail
impl PartialEq for AccountDetail
source§fn eq(&self, other: &AccountDetail) -> bool
fn eq(&self, other: &AccountDetail) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for AccountDetail
impl StructuralEq for AccountDetail
impl StructuralPartialEq for AccountDetail
Auto Trait Implementations§
impl RefUnwindSafe for AccountDetail
impl Send for AccountDetail
impl Sync for AccountDetail
impl Unpin for AccountDetail
impl UnwindSafe for AccountDetail
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