pub struct CreateImage201Response {
pub response_id: Uuid,
pub image: Box<Image>,
}Fields§
§response_id: UuidID запроса, который можно указывать при обращении в службу технической поддержки, чтобы помочь определить проблему.
image: Box<Image>Образ.
Implementations§
Source§impl CreateImage201Response
impl CreateImage201Response
pub fn new(response_id: Uuid, image: Image) -> CreateImage201Response
Trait Implementations§
Source§impl Clone for CreateImage201Response
impl Clone for CreateImage201Response
Source§fn clone(&self) -> CreateImage201Response
fn clone(&self) -> CreateImage201Response
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateImage201Response
impl Debug for CreateImage201Response
Source§impl Default for CreateImage201Response
impl Default for CreateImage201Response
Source§fn default() -> CreateImage201Response
fn default() -> CreateImage201Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateImage201Response
impl<'de> Deserialize<'de> for CreateImage201Response
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 CreateImage201Response
impl PartialEq for CreateImage201Response
Source§fn eq(&self, other: &CreateImage201Response) -> bool
fn eq(&self, other: &CreateImage201Response) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreateImage201Response
impl Serialize for CreateImage201Response
impl StructuralPartialEq for CreateImage201Response
Auto Trait Implementations§
impl Freeze for CreateImage201Response
impl RefUnwindSafe for CreateImage201Response
impl Send for CreateImage201Response
impl Sync for CreateImage201Response
impl Unpin for CreateImage201Response
impl UnsafeUnpin for CreateImage201Response
impl UnwindSafe for CreateImage201Response
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