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