pub struct BodyReqExecuteOwned {
pub id: CBytesShort,
pub result_metadata_id: Option<CBytesShort>,
pub query_parameters: QueryParams,
}
Expand description
The structure that represents an owned body of a envelope of type execute
.
Fields§
§id: CBytesShort
§result_metadata_id: Option<CBytesShort>
§query_parameters: QueryParams
Implementations§
Source§impl BodyReqExecuteOwned
impl BodyReqExecuteOwned
pub const fn new( id: CBytesShort, result_metadata_id: Option<CBytesShort>, query_parameters: QueryParams, ) -> BodyReqExecuteOwned
Trait Implementations§
Source§impl Clone for BodyReqExecuteOwned
impl Clone for BodyReqExecuteOwned
Source§fn clone(&self) -> BodyReqExecuteOwned
fn clone(&self) -> BodyReqExecuteOwned
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 BodyReqExecuteOwned
impl Debug for BodyReqExecuteOwned
Source§impl Default for BodyReqExecuteOwned
impl Default for BodyReqExecuteOwned
Source§fn default() -> BodyReqExecuteOwned
fn default() -> BodyReqExecuteOwned
Returns the “default value” for a type. Read more
Source§impl FromCursor for BodyReqExecuteOwned
impl FromCursor for BodyReqExecuteOwned
Source§impl PartialEq for BodyReqExecuteOwned
impl PartialEq for BodyReqExecuteOwned
Source§impl Serialize for BodyReqExecuteOwned
impl Serialize for BodyReqExecuteOwned
impl Eq for BodyReqExecuteOwned
impl StructuralPartialEq for BodyReqExecuteOwned
Auto Trait Implementations§
impl Freeze for BodyReqExecuteOwned
impl RefUnwindSafe for BodyReqExecuteOwned
impl Send for BodyReqExecuteOwned
impl Sync for BodyReqExecuteOwned
impl Unpin for BodyReqExecuteOwned
impl UnwindSafe for BodyReqExecuteOwned
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more