[][src]Struct krill::commons::api::CommandSummary

pub struct CommandSummary {
    pub msg: Message,
    pub label: Label,
    pub args: BTreeMap<ArgKey, ArgVal>,
}

Generic command summary used to show command details in history in a way that support internationalisation.

Fields

msg: Messagelabel: Labelargs: BTreeMap<ArgKey, ArgVal>

Implementations

impl CommandSummary[src]

pub fn new(label: &str, msg: impl Display) -> Self[src]

pub fn with_arg(self, key: &str, val: impl Display) -> Self[src]

pub fn with_child(self, child: &ChildHandle) -> Self[src]

pub fn with_parent(self, parent: &ParentHandle) -> Self[src]

pub fn with_publisher(self, publisher: &PublisherHandle) -> Self[src]

pub fn with_id_ski(self, id_opt: Option<&String>) -> Self[src]

pub fn with_resources(self, resources: &ResourceSet) -> Self[src]

pub fn with_rcn(self, rcn: &ResourceClassName) -> Self[src]

pub fn with_key(self, ki: &KeyIdentifier) -> Self[src]

pub fn with_parent_contact(self, contact: &StorableParentContact) -> Self[src]

pub fn with_seconds(self, seconds: i64) -> Self[src]

pub fn with_added(self, nr: usize) -> Self[src]

pub fn with_removed(self, nr: usize) -> Self[src]

pub fn with_service_uri_opt(self, service_uri_opt: Option<&ServiceUri>) -> Self[src]

Trait Implementations

impl Clone for CommandSummary[src]

impl Debug for CommandSummary[src]

impl<'de> Deserialize<'de> for CommandSummary[src]

impl Eq for CommandSummary[src]

impl PartialEq<CommandSummary> for CommandSummary[src]

impl Serialize for CommandSummary[src]

impl StructuralEq for CommandSummary[src]

impl StructuralPartialEq for CommandSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.