pub struct WireListItem {
pub range: Range,
pub inlines: Vec<WireInline>,
pub children: Vec<WireNode>,
}Expand description
One item inside a WireNode::List.
Fields§
§range: Range§inlines: Vec<WireInline>§children: Vec<WireNode>Trait Implementations§
Source§impl Clone for WireListItem
impl Clone for WireListItem
Source§fn clone(&self) -> WireListItem
fn clone(&self) -> WireListItem
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 WireListItem
impl Debug for WireListItem
Source§impl<'de> Deserialize<'de> for WireListItem
impl<'de> Deserialize<'de> for WireListItem
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 PartialEq for WireListItem
impl PartialEq for WireListItem
Source§fn eq(&self, other: &WireListItem) -> bool
fn eq(&self, other: &WireListItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WireListItem
impl Serialize for WireListItem
impl StructuralPartialEq for WireListItem
Auto Trait Implementations§
impl Freeze for WireListItem
impl RefUnwindSafe for WireListItem
impl Send for WireListItem
impl Sync for WireListItem
impl Unpin for WireListItem
impl UnsafeUnpin for WireListItem
impl UnwindSafe for WireListItem
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