pub struct CreateFeedResponse {
pub feed_id: String,
}Expand description
CreateFeedResponse : Response schema.
Fields§
§feed_id: StringThe identifier for the feed. This identifier is unique only in combination with a seller ID.
Implementations§
Source§impl CreateFeedResponse
impl CreateFeedResponse
Sourcepub fn new(feed_id: String) -> CreateFeedResponse
pub fn new(feed_id: String) -> CreateFeedResponse
Response schema.
Trait Implementations§
Source§impl Clone for CreateFeedResponse
impl Clone for CreateFeedResponse
Source§fn clone(&self) -> CreateFeedResponse
fn clone(&self) -> CreateFeedResponse
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 CreateFeedResponse
impl Debug for CreateFeedResponse
Source§impl Default for CreateFeedResponse
impl Default for CreateFeedResponse
Source§fn default() -> CreateFeedResponse
fn default() -> CreateFeedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFeedResponse
impl<'de> Deserialize<'de> for CreateFeedResponse
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 CreateFeedResponse
impl PartialEq for CreateFeedResponse
Source§impl Serialize for CreateFeedResponse
impl Serialize for CreateFeedResponse
impl StructuralPartialEq for CreateFeedResponse
Auto Trait Implementations§
impl Freeze for CreateFeedResponse
impl RefUnwindSafe for CreateFeedResponse
impl Send for CreateFeedResponse
impl Sync for CreateFeedResponse
impl Unpin for CreateFeedResponse
impl UnwindSafe for CreateFeedResponse
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