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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.