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§
sourcefn short_description<T>(self, value: T) -> Self
fn short_description<T>(self, value: T) -> Self
Setter for short_description
field.
sourcefn language_code<T>(self, value: T) -> Self
fn language_code<T>(self, value: T) -> Self
Setter for language_code
field.
Object Safety§
This trait is not object safe.