pub struct NodeLocation {
pub semantic: SemanticLocation,
pub physical: Option<PhysicalLocation>,
}Fields§
§semantic: SemanticLocationAlways present — computed by GraphBuilder from final tree structure
physical: Option<PhysicalLocation>Only for fixed-flow formats (PDF) — passed through from channel
Trait Implementations§
Source§impl Clone for NodeLocation
impl Clone for NodeLocation
Source§fn clone(&self) -> NodeLocation
fn clone(&self) -> NodeLocation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NodeLocation
impl Debug for NodeLocation
Source§impl<'de> Deserialize<'de> for NodeLocation
impl<'de> Deserialize<'de> for NodeLocation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodeLocation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodeLocation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for NodeLocation
impl Serialize for NodeLocation
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for NodeLocation
impl RefUnwindSafe for NodeLocation
impl Send for NodeLocation
impl Sync for NodeLocation
impl Unpin for NodeLocation
impl UnsafeUnpin for NodeLocation
impl UnwindSafe for NodeLocation
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