pub struct BasicMessage {
pub output_mode: ConsoleOutputMode,
pub action: String,
pub result: String,
pub status: MessageStatus,
}Fields§
§output_mode: ConsoleOutputMode§action: String§result: String§status: MessageStatusTrait Implementations§
Source§impl Debug for BasicMessage
impl Debug for BasicMessage
Source§impl Default for BasicMessage
impl Default for BasicMessage
Source§impl<'de> Deserialize<'de> for BasicMessage
impl<'de> Deserialize<'de> for BasicMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for BasicMessage
This outputs in either JSON or Text depending on the output_mode setting
impl Display for BasicMessage
This outputs in either JSON or Text depending on the output_mode setting
use kanidm_proto::messages::*;
use std::fmt::format;
let mut msg = BasicMessage::default();
msg.action = String::from("cake_eating");
msg.result = String::from("It was amazing");
assert_eq!(msg.status, MessageStatus::Success);
let expected_result = "success - cake_eating: It was amazing";
assert_eq!(format!("{}", msg), expected_result);
msg.output_mode = ConsoleOutputMode::JSON;
let expected_result =
"{\"action\":\"cake_eating\",\"result\":\"It was amazing\",\"status\":\"success\"}";
assert_eq!(format!("{}", msg), expected_result);Auto Trait Implementations§
impl Freeze for BasicMessage
impl RefUnwindSafe for BasicMessage
impl Send for BasicMessage
impl Sync for BasicMessage
impl Unpin for BasicMessage
impl UnsafeUnpin for BasicMessage
impl UnwindSafe for BasicMessage
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].