pub struct CreatePresetResponse {
pub preset: Option<Preset>,
pub warning: Option<String>,
}
Expand description
The CreatePresetResponse
structure.
Fields§
§preset: Option<Preset>
A section of the response body that provides information about the preset that is created.
warning: Option<String>
If the preset settings don't comply with the standards for the video codec but Elastic Transcoder created the preset, this message explains the reason the preset settings don't meet the standard. Elastic Transcoder created the preset because the settings might produce acceptable output.
Trait Implementations§
Source§impl Clone for CreatePresetResponse
impl Clone for CreatePresetResponse
Source§fn clone(&self) -> CreatePresetResponse
fn clone(&self) -> CreatePresetResponse
Returns a copy 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 CreatePresetResponse
impl Debug for CreatePresetResponse
Source§impl Default for CreatePresetResponse
impl Default for CreatePresetResponse
Source§fn default() -> CreatePresetResponse
fn default() -> CreatePresetResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreatePresetResponse
impl<'de> Deserialize<'de> for CreatePresetResponse
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
Source§impl PartialEq for CreatePresetResponse
impl PartialEq for CreatePresetResponse
impl StructuralPartialEq for CreatePresetResponse
Auto Trait Implementations§
impl Freeze for CreatePresetResponse
impl RefUnwindSafe for CreatePresetResponse
impl Send for CreatePresetResponse
impl Sync for CreatePresetResponse
impl Unpin for CreatePresetResponse
impl UnwindSafe for CreatePresetResponse
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