Enum advreader::AdvReturnValue
source · pub enum AdvReturnValue {
}Variants§
Bytes(Vec<u8>)
String(Vec<u8>)
Comment(Vec<u8>)
LineComment(Vec<u8>)
StringUtf8(String)
CommentUtf8(String)
LineCommentUtf8(String)
Bool(bool)
Int(i64)
Float(f64)
Hex(i64)
Oct(i64)
Bin(i64)
Block(Vec<u8>)
Implementations§
Trait Implementations§
source§impl Clone for AdvReturnValue
impl Clone for AdvReturnValue
source§fn clone(&self) -> AdvReturnValue
fn clone(&self) -> AdvReturnValue
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 AdvReturnValue
impl Debug for AdvReturnValue
source§impl PartialEq for AdvReturnValue
impl PartialEq for AdvReturnValue
source§fn eq(&self, other: &AdvReturnValue) -> bool
fn eq(&self, other: &AdvReturnValue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AdvReturnValue
Auto Trait Implementations§
impl RefUnwindSafe for AdvReturnValue
impl Send for AdvReturnValue
impl Sync for AdvReturnValue
impl Unpin for AdvReturnValue
impl UnwindSafe for AdvReturnValue
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