pub struct CssParseErrorOwned {
pub css_string: String,
pub error: CssParseErrorInnerOwned,
pub location: (ErrorLocation, ErrorLocation),
}Expand description
Owned version of CssParseError, without references.
Fields§
§css_string: String§error: CssParseErrorInnerOwned§location: (ErrorLocation, ErrorLocation)Implementations§
Trait Implementations§
Source§impl Clone for CssParseErrorOwned
impl Clone for CssParseErrorOwned
Source§fn clone(&self) -> CssParseErrorOwned
fn clone(&self) -> CssParseErrorOwned
Returns a duplicate 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 CssParseErrorOwned
impl Debug for CssParseErrorOwned
Source§impl PartialEq for CssParseErrorOwned
impl PartialEq for CssParseErrorOwned
impl StructuralPartialEq for CssParseErrorOwned
Auto Trait Implementations§
impl Freeze for CssParseErrorOwned
impl RefUnwindSafe for CssParseErrorOwned
impl Send for CssParseErrorOwned
impl Sync for CssParseErrorOwned
impl Unpin for CssParseErrorOwned
impl UnwindSafe for CssParseErrorOwned
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