pub struct BlockLocationTree {
pub block: BlockLocation,
pub children: Vec<BlockLocationTree>,
}
Fields§
§block: BlockLocation
§children: Vec<BlockLocationTree>
Trait Implementations§
Source§impl Clone for BlockLocationTree
impl Clone for BlockLocationTree
Source§fn clone(&self) -> BlockLocationTree
fn clone(&self) -> BlockLocationTree
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 BlockLocationTree
impl Debug for BlockLocationTree
Source§impl Default for BlockLocationTree
impl Default for BlockLocationTree
Source§fn default() -> BlockLocationTree
fn default() -> BlockLocationTree
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BlockLocationTree
impl<'de> Deserialize<'de> for BlockLocationTree
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 From<&BlockTree<'_>> for BlockLocationTree
impl From<&BlockTree<'_>> for BlockLocationTree
Source§impl From<BlockTree<'_>> for BlockLocationTree
impl From<BlockTree<'_>> for BlockLocationTree
Source§impl Hash for BlockLocationTree
impl Hash for BlockLocationTree
Source§impl Ord for BlockLocationTree
impl Ord for BlockLocationTree
Source§fn cmp(&self, other: &BlockLocationTree) -> Ordering
fn cmp(&self, other: &BlockLocationTree) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BlockLocationTree
impl PartialEq for BlockLocationTree
Source§impl PartialOrd for BlockLocationTree
impl PartialOrd for BlockLocationTree
Source§impl Serialize for BlockLocationTree
impl Serialize for BlockLocationTree
impl Eq for BlockLocationTree
impl StructuralPartialEq for BlockLocationTree
Auto Trait Implementations§
impl Freeze for BlockLocationTree
impl RefUnwindSafe for BlockLocationTree
impl Send for BlockLocationTree
impl Sync for BlockLocationTree
impl Unpin for BlockLocationTree
impl UnwindSafe for BlockLocationTree
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