pub enum YamlSymbol {
Name(String),
Rva(u64),
}Expand description
Symbol representation used in YAML: either name or RVA.
Variants§
Trait Implementations§
Source§impl Debug for YamlSymbol
impl Debug for YamlSymbol
Source§impl<'de> Deserialize<'de> for YamlSymbol
impl<'de> Deserialize<'de> for YamlSymbol
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for YamlSymbol
impl RefUnwindSafe for YamlSymbol
impl Send for YamlSymbol
impl Sync for YamlSymbol
impl Unpin for YamlSymbol
impl UnwindSafe for YamlSymbol
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