Struct iotdb::rpc::ServerProperties [−][src]
pub struct ServerProperties {
pub version: String,
pub supported_time_aggregation_operations: Vec<String>,
pub timestamp_precision: String,
pub max_concurrent_client_num: Option<i32>,
pub watermark_secret_key: Option<String>,
pub watermark_bit_string: Option<String>,
pub watermark_param_mark_rate: Option<i32>,
pub watermark_param_max_right_bit: Option<i32>,
pub thrift_max_frame_size: Option<i32>,
pub is_read_only: Option<bool>,
}Fields
version: Stringsupported_time_aggregation_operations: Vec<String>timestamp_precision: Stringmax_concurrent_client_num: Option<i32>watermark_secret_key: Option<String>watermark_bit_string: Option<String>watermark_param_mark_rate: Option<i32>watermark_param_max_right_bit: Option<i32>thrift_max_frame_size: Option<i32>is_read_only: Option<bool>Implementations
pub fn new<F4, F5, F6, F7, F8, F9, F10>(
version: String,
supported_time_aggregation_operations: Vec<String>,
timestamp_precision: String,
max_concurrent_client_num: F4,
watermark_secret_key: F5,
watermark_bit_string: F6,
watermark_param_mark_rate: F7,
watermark_param_max_right_bit: F8,
thrift_max_frame_size: F9,
is_read_only: F10
) -> ServerProperties where
F4: Into<Option<i32>>,
F5: Into<Option<String>>,
F6: Into<Option<String>>,
F7: Into<Option<i32>>,
F8: Into<Option<i32>>,
F9: Into<Option<i32>>,
F10: Into<Option<bool>>,
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for ServerProperties
impl Send for ServerProperties
impl Sync for ServerProperties
impl Unpin for ServerProperties
impl UnwindSafe for ServerProperties
Blanket Implementations
Mutably borrows from an owned value. Read more