[][src]Struct influx_db_client::keys::Points

pub struct Points {
    pub point: Vec<Point>,
}

Points

Fields

point: Vec<Point>

points

Implementations

impl Points[src]

pub fn new(point: Point) -> Points

Notable traits for Points

impl Iterator for Points type Item = Point;
[src]

Create a new points

pub fn push(self, point: Point) -> Self[src]

Insert point into already existing points

pub fn create_new(points: Vec<Point>) -> Points

Notable traits for Points

impl Iterator for Points type Item = Point;
[src]

Create a multi Points more directly

Trait Implementations

impl Clone for Points[src]

impl Debug for Points[src]

impl<'de> Deserialize<'de> for Points[src]

impl FromIterator<Point> for Points[src]

impl Iterator for Points[src]

type Item = Point

The type of the elements being iterated over.

impl PartialEq<Points> for Points[src]

impl Serialize for Points[src]

impl StructuralPartialEq for Points[src]

Auto Trait Implementations

impl RefUnwindSafe for Points

impl Send for Points

impl Sync for Points

impl Unpin for Points

impl UnwindSafe for Points

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.