pub struct Coordinator {
pub key: String,
pub node_id: i32,
pub host: String,
pub port: i32,
pub error_code: i16,
pub error_message: Option<String>,
pub unknown_tagged_fields: Vec<RawTaggedField>,
}
Fields§
§key: String
The coordinator key.
node_id: i32
The node id.
host: String
The host name.
port: i32
The port.
error_code: i16
The error code, or 0 if there was no error.
error_message: Option<String>
The error message, or null if there was no error.
unknown_tagged_fields: Vec<RawTaggedField>
Unknown tagged fields.
Trait Implementations§
Source§impl Clone for Coordinator
impl Clone for Coordinator
Source§fn clone(&self) -> Coordinator
fn clone(&self) -> Coordinator
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 Coordinator
impl Debug for Coordinator
Source§impl Default for Coordinator
impl Default for Coordinator
Source§fn default() -> Coordinator
fn default() -> Coordinator
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Coordinator
impl RefUnwindSafe for Coordinator
impl Send for Coordinator
impl Sync for Coordinator
impl Unpin for Coordinator
impl UnwindSafe for Coordinator
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