pub struct CreatedWithIdResponse {
pub id: i32,
}Expand description
Response from creating a file, containing the new file ID.
Fields§
§id: i32Trait Implementations§
Source§impl Clone for CreatedWithIdResponse
impl Clone for CreatedWithIdResponse
Source§fn clone(&self) -> CreatedWithIdResponse
fn clone(&self) -> CreatedWithIdResponse
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 CreatedWithIdResponse
impl Debug for CreatedWithIdResponse
Source§impl<'de> Deserialize<'de> for CreatedWithIdResponse
impl<'de> Deserialize<'de> for CreatedWithIdResponse
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 CreatedWithIdResponse
impl RefUnwindSafe for CreatedWithIdResponse
impl Send for CreatedWithIdResponse
impl Sync for CreatedWithIdResponse
impl Unpin for CreatedWithIdResponse
impl UnsafeUnpin for CreatedWithIdResponse
impl UnwindSafe for CreatedWithIdResponse
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