pub trait SetMyShortDescriptionSetters: HasPayload<Payload = SetMyShortDescription> + Sized {
    // Provided methods
    fn short_description<T>(self, value: T) -> Self
       where T: Into<String> { ... }
    fn language_code<T>(self, value: T) -> Self
       where T: Into<String> { ... }
}
Expand description

Setters for fields of SetMyShortDescription

Provided Methods§

source

fn short_description<T>(self, value: T) -> Self
where T: Into<String>,

Setter for short_description field.

source

fn language_code<T>(self, value: T) -> Self
where T: Into<String>,

Setter for language_code field.

Object Safety§

This trait is not object safe.

Implementors§