pub struct PrimitiveGroup {
pub nodes: Vec<Node>,
pub dense: Option<DenseNodes>,
pub ways: Vec<Way>,
pub relations: Vec<Relation>,
pub changesets: Vec<ChangeSet>,
}
Fields§
§nodes: Vec<Node>
§dense: Option<DenseNodes>
§ways: Vec<Way>
§relations: Vec<Relation>
§changesets: Vec<ChangeSet>
Trait Implementations§
Source§impl Clone for PrimitiveGroup
impl Clone for PrimitiveGroup
Source§fn clone(&self) -> PrimitiveGroup
fn clone(&self) -> PrimitiveGroup
Returns a duplicate 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 PrimitiveGroup
impl Debug for PrimitiveGroup
Source§impl Default for PrimitiveGroup
impl Default for PrimitiveGroup
Source§fn default() -> PrimitiveGroup
fn default() -> PrimitiveGroup
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for PrimitiveGroup
impl<'a> MessageRead<'a> for PrimitiveGroup
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self
by reading from the given bytes
via the given reader. Read moreSource§impl MessageWrite for PrimitiveGroup
impl MessageWrite for PrimitiveGroup
Source§impl PartialEq for PrimitiveGroup
impl PartialEq for PrimitiveGroup
impl StructuralPartialEq for PrimitiveGroup
Auto Trait Implementations§
impl Freeze for PrimitiveGroup
impl RefUnwindSafe for PrimitiveGroup
impl Send for PrimitiveGroup
impl Sync for PrimitiveGroup
impl Unpin for PrimitiveGroup
impl UnwindSafe for PrimitiveGroup
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