pub enum GrpcField {
Show 17 variants Bytes(Vec<u8>), StringList(Vec<String>), String(String), I64List(Vec<i64>), I64(i64), F64(f64), I32(i32), U32List(Vec<u32>), U32(u32), F32(f32), Bool(bool), I16(i16), Timestamp(Timestamp), GeoPoint(Point), GeoPolygon(Polygon), GeoLineString(LineString), Option(GrpcFieldOption),
}
Expand description

gRPC field types

Variants§

§

Bytes(Vec<u8>)

Byte Array

§

StringList(Vec<String>)

Vec<String>

§

String(String)

String

§

I64List(Vec<i64>)

Vec<i64>

§

I64(i64)

i64

§

F64(f64)

f64

§

I32(i32)

i32

§

U32List(Vec<u32>)

Vec<u32>

§

U32(u32)

u32

§

F32(f32)

f32

§

Bool(bool)

bool

§

I16(i16)

i16

§

Timestamp(Timestamp)

Timestamp

§

GeoPoint(Point)

Geometric Point

§

GeoPolygon(Polygon)

Geometric Polygon

§

GeoLineString(LineString)

Geometric Line

§

Option(GrpcFieldOption)

Option GrpcFieldOption

Trait Implementations§

source§

impl Clone for GrpcField

source§

fn clone(&self) -> GrpcField

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GrpcField

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<GrpcField> for LineString

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for Point

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for Polygon

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for String

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for Timestamp

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for Vec<String>

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for Vec<i64>

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for Vec<u32>

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for Vec<u8>

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for bool

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for f32

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for f64

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for i16

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for i32

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for i64

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl From<GrpcField> for u32

source§

fn from(field: GrpcField) -> Self

Converts to this type from the input type.
source§

impl PartialEq for GrpcField

source§

fn eq(&self, other: &GrpcField) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for GrpcField

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneAny for T
where T: Any + Clone + Send + Sync,

§

fn clone_any(&self) -> Box<dyn CloneAny>

§

fn clone_any_send(&self) -> Box<dyn CloneAny + Send>

§

fn clone_any_sync(&self) -> Box<dyn CloneAny + Sync>

§

fn clone_any_send_sync(&self) -> Box<dyn CloneAny + Send + Sync>

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<I> IntoResettable<String> for I
where I: Into<String>,

§

fn into_resettable(self) -> Resettable<String>

Convert to the intended resettable type
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> DebugAny for T
where T: Any + Debug,

§

impl<T> UnsafeAny for T
where T: Any,