pub struct BrowseNodeResponse {
pub browse_node_id: String,
pub display_name: String,
}Expand description
BrowseNodeResponse : The response for the getItemBrowseNode operation.
Fields§
§browse_node_id: StringA browse node id is the unique identifier of a given browse node. A browse node is a location in a browse tree that is used for navigation, product classification, and website content.
display_name: StringThe display name of the browse node as visible on the Amazon retail website.
Implementations§
Source§impl BrowseNodeResponse
impl BrowseNodeResponse
Sourcepub fn new(browse_node_id: String, display_name: String) -> BrowseNodeResponse
pub fn new(browse_node_id: String, display_name: String) -> BrowseNodeResponse
The response for the getItemBrowseNode operation.
Trait Implementations§
Source§impl Clone for BrowseNodeResponse
impl Clone for BrowseNodeResponse
Source§fn clone(&self) -> BrowseNodeResponse
fn clone(&self) -> BrowseNodeResponse
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 BrowseNodeResponse
impl Debug for BrowseNodeResponse
Source§impl Default for BrowseNodeResponse
impl Default for BrowseNodeResponse
Source§fn default() -> BrowseNodeResponse
fn default() -> BrowseNodeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BrowseNodeResponse
impl<'de> Deserialize<'de> for BrowseNodeResponse
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 BrowseNodeResponse
impl PartialEq for BrowseNodeResponse
Source§impl Serialize for BrowseNodeResponse
impl Serialize for BrowseNodeResponse
impl StructuralPartialEq for BrowseNodeResponse
Auto Trait Implementations§
impl Freeze for BrowseNodeResponse
impl RefUnwindSafe for BrowseNodeResponse
impl Send for BrowseNodeResponse
impl Sync for BrowseNodeResponse
impl Unpin for BrowseNodeResponse
impl UnsafeUnpin for BrowseNodeResponse
impl UnwindSafe for BrowseNodeResponse
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