pub struct CreatePostcardResponse {
pub id: Box<str>,
pub send_date: Box<str>,
}Expand description
The response from lob’s api for creating a postcard
Fields§
§id: Box<str>the id of the postcard
send_date: Box<str>the send date
Trait Implementations§
Source§impl Clone for CreatePostcardResponse
impl Clone for CreatePostcardResponse
Source§fn clone(&self) -> CreatePostcardResponse
fn clone(&self) -> CreatePostcardResponse
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 CreatePostcardResponse
impl Debug for CreatePostcardResponse
Source§impl<'de> Deserialize<'de> for CreatePostcardResponse
impl<'de> Deserialize<'de> for CreatePostcardResponse
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 CreatePostcardResponse
impl RefUnwindSafe for CreatePostcardResponse
impl Send for CreatePostcardResponse
impl Sync for CreatePostcardResponse
impl Unpin for CreatePostcardResponse
impl UnwindSafe for CreatePostcardResponse
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