pub enum OrganizationRequest {
Create(CreateRequest),
Update(UpdateRequest),
Delete(DeleteRequest),
}Expand description
Supported Dataverse operations for a batch request.
Variants§
Create(CreateRequest)
Create a new Dataverse row.
Update(UpdateRequest)
Update an existing Dataverse row.
Delete(DeleteRequest)
Delete an existing Dataverse row.
Trait Implementations§
Source§impl Clone for OrganizationRequest
impl Clone for OrganizationRequest
Source§fn clone(&self) -> OrganizationRequest
fn clone(&self) -> OrganizationRequest
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 OrganizationRequest
impl RefUnwindSafe for OrganizationRequest
impl Send for OrganizationRequest
impl Sync for OrganizationRequest
impl Unpin for OrganizationRequest
impl UnsafeUnpin for OrganizationRequest
impl UnwindSafe for OrganizationRequest
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