pub struct AddBatchStatusParams {
pub common: AddStatusCommon,
pub extended_data: Option<AddExtendedParams>,
}Expand description
Parameters for the add_batch_status endpoint.
Fields§
§common: AddStatusCommonParameters common to the add_status and
add_batch_status endpoints.
extended_data: Option<AddExtendedParams>Extended data.
Requires donation status.
Implementations§
Source§impl AddBatchStatusParams
impl AddBatchStatusParams
Sourcepub const fn new(
common: AddStatusCommon,
extended_data: Option<AddExtendedParams>,
) -> Self
pub const fn new( common: AddStatusCommon, extended_data: Option<AddExtendedParams>, ) -> Self
Creates a new AddBatchStatusParams.
Trait Implementations§
Source§impl Clone for AddBatchStatusParams
impl Clone for AddBatchStatusParams
Source§fn clone(&self) -> AddBatchStatusParams
fn clone(&self) -> AddBatchStatusParams
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 AddBatchStatusParams
impl Debug for AddBatchStatusParams
Source§impl From<AddStatusCommon> for AddBatchStatusParams
impl From<AddStatusCommon> for AddBatchStatusParams
Source§fn from(common: AddStatusCommon) -> Self
fn from(common: AddStatusCommon) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddBatchStatusParams
impl RefUnwindSafe for AddBatchStatusParams
impl Send for AddBatchStatusParams
impl Sync for AddBatchStatusParams
impl Unpin for AddBatchStatusParams
impl UnwindSafe for AddBatchStatusParams
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