pub enum FromResNodeErrorType {
NoAttr(&'static str, Vec<String>),
FromResValue(&'static str, FromResValueError),
NoString(ResStringPoolRef),
UnknownAttr(String),
UnknownChild(String),
UnknownAttrs(Vec<String>),
UnknownChildren(Vec<String>),
NoChild(&'static str, Vec<String>),
TooManyChildrenForOptional(usize),
}Variants§
NoAttr(&'static str, Vec<String>)
FromResValue(&'static str, FromResValueError)
NoString(ResStringPoolRef)
UnknownAttr(String)
UnknownChild(String)
UnknownAttrs(Vec<String>)
UnknownChildren(Vec<String>)
NoChild(&'static str, Vec<String>)
TooManyChildrenForOptional(usize)
Trait Implementations§
Source§impl Debug for FromResNodeErrorType
impl Debug for FromResNodeErrorType
Auto Trait Implementations§
impl Freeze for FromResNodeErrorType
impl RefUnwindSafe for FromResNodeErrorType
impl Send for FromResNodeErrorType
impl Sync for FromResNodeErrorType
impl Unpin for FromResNodeErrorType
impl UnsafeUnpin for FromResNodeErrorType
impl UnwindSafe for FromResNodeErrorType
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