pub struct IncludedFrom {
pub included_from: Option<Box<IncludedFrom>>,
pub file: Arc<str>,
}
Fields§
§included_from: Option<Box<IncludedFrom>>
§file: Arc<str>
Trait Implementations§
Source§impl Clone for IncludedFrom
impl Clone for IncludedFrom
Source§fn clone(&self) -> IncludedFrom
fn clone(&self) -> IncludedFrom
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 IncludedFrom
impl Debug for IncludedFrom
Source§impl<'de> Deserialize<'de> for IncludedFrom
impl<'de> Deserialize<'de> for IncludedFrom
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
Source§impl Hash for IncludedFrom
impl Hash for IncludedFrom
Source§impl PartialEq for IncludedFrom
impl PartialEq for IncludedFrom
Source§impl Serialize for IncludedFrom
impl Serialize for IncludedFrom
impl Eq for IncludedFrom
impl StructuralPartialEq for IncludedFrom
Auto Trait Implementations§
impl Freeze for IncludedFrom
impl RefUnwindSafe for IncludedFrom
impl Send for IncludedFrom
impl Sync for IncludedFrom
impl Unpin for IncludedFrom
impl UnwindSafe for IncludedFrom
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