#[non_exhaustive]pub struct EncodedPolyline {
pub points: String,
/* private fields */
}Expand description
The encoded representation of a polyline. More information on polyline encoding can be found here: https://developers.google.com/maps/documentation/utilities/polylinealgorithm https://developers.google.com/maps/documentation/javascript/reference/geometry#encoding.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.points: StringString representing encoded points of the polyline.
Implementations§
Trait Implementations§
Source§impl Clone for EncodedPolyline
impl Clone for EncodedPolyline
Source§fn clone(&self) -> EncodedPolyline
fn clone(&self) -> EncodedPolyline
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 EncodedPolyline
impl Debug for EncodedPolyline
Source§impl Default for EncodedPolyline
impl Default for EncodedPolyline
Source§fn default() -> EncodedPolyline
fn default() -> EncodedPolyline
Returns the “default value” for a type. Read more
Source§impl Message for EncodedPolyline
impl Message for EncodedPolyline
Source§impl PartialEq for EncodedPolyline
impl PartialEq for EncodedPolyline
impl StructuralPartialEq for EncodedPolyline
Auto Trait Implementations§
impl Freeze for EncodedPolyline
impl RefUnwindSafe for EncodedPolyline
impl Send for EncodedPolyline
impl Sync for EncodedPolyline
impl Unpin for EncodedPolyline
impl UnwindSafe for EncodedPolyline
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