pub struct RegisterControllerRecord {
pub controller_id: i32,
pub incarnation_id: Uuid,
pub zk_migration_ready: bool,
pub end_points: Vec<ControllerEndpoint>,
pub features: Vec<ControllerFeature>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§controller_id: i32§incarnation_id: Uuid§zk_migration_ready: bool§end_points: Vec<ControllerEndpoint>§features: Vec<ControllerFeature>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for RegisterControllerRecord
impl Clone for RegisterControllerRecord
Source§fn clone(&self) -> RegisterControllerRecord
fn clone(&self) -> RegisterControllerRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RegisterControllerRecord
impl Debug for RegisterControllerRecord
Source§impl Decode<'_> for RegisterControllerRecord
impl Decode<'_> for RegisterControllerRecord
Source§impl Default for RegisterControllerRecord
impl Default for RegisterControllerRecord
Source§fn default() -> RegisterControllerRecord
fn default() -> RegisterControllerRecord
Returns the “default value” for a type. Read more
Source§impl Encode for RegisterControllerRecord
impl Encode for RegisterControllerRecord
impl Eq for RegisterControllerRecord
Source§impl PartialEq for RegisterControllerRecord
impl PartialEq for RegisterControllerRecord
Source§fn eq(&self, other: &RegisterControllerRecord) -> bool
fn eq(&self, other: &RegisterControllerRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegisterControllerRecord
Auto Trait Implementations§
impl Freeze for RegisterControllerRecord
impl RefUnwindSafe for RegisterControllerRecord
impl Send for RegisterControllerRecord
impl Sync for RegisterControllerRecord
impl Unpin for RegisterControllerRecord
impl UnsafeUnpin for RegisterControllerRecord
impl UnwindSafe for RegisterControllerRecord
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