pub struct DeleteRequest {
pub target: EntityReference,
pub parameters: RequestParameters,
}Expand description
Delete operation inside a batch request.
Fields§
§target: EntityReferenceEntity reference to delete.
parameters: RequestParametersOptional Dataverse headers that affect plugin/business logic execution.
Implementations§
Source§impl DeleteRequest
impl DeleteRequest
Sourcepub fn new(target: EntityReference) -> Self
pub fn new(target: EntityReference) -> Self
Create a batch delete request with default request parameters.
Trait Implementations§
Source§impl Clone for DeleteRequest
impl Clone for DeleteRequest
Source§fn clone(&self) -> DeleteRequest
fn clone(&self) -> DeleteRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DeleteRequest
impl RefUnwindSafe for DeleteRequest
impl Send for DeleteRequest
impl Sync for DeleteRequest
impl Unpin for DeleteRequest
impl UnsafeUnpin for DeleteRequest
impl UnwindSafe for DeleteRequest
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