pub struct FoundAffiliatePrograms {
pub total_count: i32,
pub programs: Vec<FoundAffiliateProgram>,
pub next_offset: String,
}Expand description
Represents a list of found affiliate programs
Fields§
§total_count: i32The total number of found affiliate programs
programs: Vec<FoundAffiliateProgram>The list of affiliate programs
next_offset: StringThe offset for the next request. If empty, then there are no more results
Trait Implementations§
Source§impl Clone for FoundAffiliatePrograms
impl Clone for FoundAffiliatePrograms
Source§fn clone(&self) -> FoundAffiliatePrograms
fn clone(&self) -> FoundAffiliatePrograms
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 FoundAffiliatePrograms
impl Debug for FoundAffiliatePrograms
Source§impl Default for FoundAffiliatePrograms
impl Default for FoundAffiliatePrograms
Source§fn default() -> FoundAffiliatePrograms
fn default() -> FoundAffiliatePrograms
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundAffiliatePrograms
impl<'de> Deserialize<'de> for FoundAffiliatePrograms
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 FoundAffiliatePrograms
impl PartialEq for FoundAffiliatePrograms
Source§impl Serialize for FoundAffiliatePrograms
impl Serialize for FoundAffiliatePrograms
impl StructuralPartialEq for FoundAffiliatePrograms
Auto Trait Implementations§
impl Freeze for FoundAffiliatePrograms
impl RefUnwindSafe for FoundAffiliatePrograms
impl Send for FoundAffiliatePrograms
impl Sync for FoundAffiliatePrograms
impl Unpin for FoundAffiliatePrograms
impl UnsafeUnpin for FoundAffiliatePrograms
impl UnwindSafe for FoundAffiliatePrograms
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