pub struct RequestParameters {
pub bypass_business_logic_execution_custom_sync: bool,
pub bypass_business_logic_execution_custom_async: bool,
pub bypass_custom_plugin_execution: bool,
pub suppress_callback_registration_expander_job: bool,
}Expand description
Optional Dataverse request parameters for create and update operations.
Fields§
§bypass_business_logic_execution_custom_sync: boolSend MSCRM.BypassBusinessLogicExecution=CustomSync.
bypass_business_logic_execution_custom_async: boolSend MSCRM.BypassBusinessLogicExecution=CustomAsync.
bypass_custom_plugin_execution: boolSend MSCRM.BypassCustomPluginExecution=true.
suppress_callback_registration_expander_job: boolSend MSCRM.SuppressCallbackRegistrationExpanderJob=true.
Implementations§
Source§impl RequestParameters
impl RequestParameters
Sourcepub fn headers(&self) -> Vec<(&'static str, &'static str)>
pub fn headers(&self) -> Vec<(&'static str, &'static str)>
Return the Dataverse request headers represented by these parameters.
Sourcepub fn apply(&self, request: RequestBuilder) -> RequestBuilder
pub fn apply(&self, request: RequestBuilder) -> RequestBuilder
Apply the configured Dataverse request parameters to an outgoing request.
Trait Implementations§
Source§impl Clone for RequestParameters
impl Clone for RequestParameters
Source§fn clone(&self) -> RequestParameters
fn clone(&self) -> RequestParameters
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 moreSource§impl Debug for RequestParameters
impl Debug for RequestParameters
Source§impl Default for RequestParameters
impl Default for RequestParameters
Source§fn default() -> RequestParameters
fn default() -> RequestParameters
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RequestParameters
impl RefUnwindSafe for RequestParameters
impl Send for RequestParameters
impl Sync for RequestParameters
impl Unpin for RequestParameters
impl UnsafeUnpin for RequestParameters
impl UnwindSafe for RequestParameters
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