pub struct GenerateClientConfigurationResult {
pub node: Option<String>,
pub ca: Vec<u8>,
pub crt: Vec<u8>,
pub key: Vec<u8>,
pub talosconfig: Vec<u8>,
}Expand description
Generated client configuration result for a node.
Fields§
§node: Option<String>Node that returned this result.
ca: Vec<u8>PEM-encoded CA certificate.
crt: Vec<u8>PEM-encoded client certificate.
key: Vec<u8>PEM-encoded client key.
talosconfig: Vec<u8>Talosconfig file content.
Implementations§
Trait Implementations§
Source§impl Clone for GenerateClientConfigurationResult
impl Clone for GenerateClientConfigurationResult
Source§fn clone(&self) -> GenerateClientConfigurationResult
fn clone(&self) -> GenerateClientConfigurationResult
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 From<GenerateClientConfiguration> for GenerateClientConfigurationResult
impl From<GenerateClientConfiguration> for GenerateClientConfigurationResult
Source§fn from(proto: ProtoGenerateClientConfig) -> Self
fn from(proto: ProtoGenerateClientConfig) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenerateClientConfigurationResult
impl RefUnwindSafe for GenerateClientConfigurationResult
impl Send for GenerateClientConfigurationResult
impl Sync for GenerateClientConfigurationResult
impl Unpin for GenerateClientConfigurationResult
impl UnwindSafe for GenerateClientConfigurationResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request