pub enum Element {
Node {
node: Node,
},
Way {
way: Way,
},
Relation {
relation: Relation,
},
Sentinel,
}
Variants§
Implementations§
Trait Implementations§
source§impl Ord for Element
impl Ord for Element
source§impl PartialEq<Element> for Element
impl PartialEq<Element> for Element
source§impl PartialOrd<Element> for Element
impl PartialOrd<Element> for Element
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Element
Auto Trait Implementations§
impl RefUnwindSafe for Element
impl Send for Element
impl Sync for Element
impl Unpin for Element
impl UnwindSafe for Element
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