pub struct DenseNodes {
pub id: Vec<i64>,
pub denseinfo: Option<DenseInfo>,
pub lat: Vec<i64>,
pub lon: Vec<i64>,
pub keys_vals: Vec<i32>,
}Fields§
§id: Vec<i64>§denseinfo: Option<DenseInfo>§lat: Vec<i64>§lon: Vec<i64>§keys_vals: Vec<i32>Trait Implementations§
Source§impl Clone for DenseNodes
impl Clone for DenseNodes
Source§fn clone(&self) -> DenseNodes
fn clone(&self) -> DenseNodes
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 DenseNodes
impl Debug for DenseNodes
Source§impl Default for DenseNodes
impl Default for DenseNodes
Source§fn default() -> DenseNodes
fn default() -> DenseNodes
Returns the “default value” for a type. Read more
Source§impl<'a> MessageRead<'a> for DenseNodes
impl<'a> MessageRead<'a> for DenseNodes
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 DenseNodes
impl MessageWrite for DenseNodes
Source§impl PartialEq for DenseNodes
impl PartialEq for DenseNodes
impl StructuralPartialEq for DenseNodes
Auto Trait Implementations§
impl Freeze for DenseNodes
impl RefUnwindSafe for DenseNodes
impl Send for DenseNodes
impl Sync for DenseNodes
impl Unpin for DenseNodes
impl UnwindSafe for DenseNodes
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more