pub trait ConvertGiftToStarsSetters: HasPayload<Payload = ConvertGiftToStars> + Sized {
// Provided methods
fn business_connection_id(self, value: BusinessConnectionId) -> Self { ... }
fn owned_gift_id(self, value: OwnedGiftId) -> Self { ... }
}Expand description
Setters for fields of ConvertGiftToStars
Provided Methods§
Sourcefn business_connection_id(self, value: BusinessConnectionId) -> Self
fn business_connection_id(self, value: BusinessConnectionId) -> Self
Setter for business_connection_id field.
Sourcefn owned_gift_id(self, value: OwnedGiftId) -> Self
fn owned_gift_id(self, value: OwnedGiftId) -> Self
Setter for owned_gift_id 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.