pub struct BrandingAssetRequest {
pub timeout: i32,
pub test: bool,
pub asset_id: String,
}Expand description
Models a request to retrieve or manipulate terminal slide shows.
Fields§
§timeout: i32The request timeout in seconds.
test: boolWhether or not to route transaction to the test gateway.
asset_id: StringId used to track a branding asset.
Trait Implementations§
Source§impl Clone for BrandingAssetRequest
impl Clone for BrandingAssetRequest
Source§fn clone(&self) -> BrandingAssetRequest
fn clone(&self) -> BrandingAssetRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BrandingAssetRequest
impl Debug for BrandingAssetRequest
Source§impl Default for BrandingAssetRequest
impl Default for BrandingAssetRequest
Source§fn default() -> BrandingAssetRequest
fn default() -> BrandingAssetRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BrandingAssetRequest
impl<'de> Deserialize<'de> for BrandingAssetRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BrandingAssetRequest
impl RefUnwindSafe for BrandingAssetRequest
impl Send for BrandingAssetRequest
impl Sync for BrandingAssetRequest
impl Unpin for BrandingAssetRequest
impl UnsafeUnpin for BrandingAssetRequest
impl UnwindSafe for BrandingAssetRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more