Struct iotdb::rpc::ServerProperties[][src]

pub struct ServerProperties {
    pub version: String,
    pub supported_time_aggregation_operations: Vec<String>,
    pub timestamp_precision: String,
}

Fields

version: Stringsupported_time_aggregation_operations: Vec<String>timestamp_precision: String

Implementations

impl ServerProperties[src]

pub fn new(
    version: String,
    supported_time_aggregation_operations: Vec<String>,
    timestamp_precision: String
) -> ServerProperties
[src]

pub fn read_from_in_protocol(
    i_prot: &mut dyn TInputProtocol
) -> Result<ServerProperties>
[src]

pub fn write_to_out_protocol(
    &self,
    o_prot: &mut dyn TOutputProtocol
) -> Result<()>
[src]

Trait Implementations

impl Clone for ServerProperties[src]

impl Debug for ServerProperties[src]

impl Eq for ServerProperties[src]

impl Hash for ServerProperties[src]

impl Ord for ServerProperties[src]

impl PartialEq<ServerProperties> for ServerProperties[src]

impl PartialOrd<ServerProperties> for ServerProperties[src]

impl StructuralEq for ServerProperties[src]

impl StructuralPartialEq for ServerProperties[src]

Auto Trait Implementations

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> From<T> for T[src]

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

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.