#[non_exhaustive]pub struct GetCaseRequest {
pub name: String,
/* private fields */
}Expand description
The request message for the GetCase endpoint.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The full name of a case to be retrieved.
Implementations§
Trait Implementations§
Source§impl Clone for GetCaseRequest
impl Clone for GetCaseRequest
Source§fn clone(&self) -> GetCaseRequest
fn clone(&self) -> GetCaseRequest
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 GetCaseRequest
impl Debug for GetCaseRequest
Source§impl Default for GetCaseRequest
impl Default for GetCaseRequest
Source§fn default() -> GetCaseRequest
fn default() -> GetCaseRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetCaseRequest
impl Message for GetCaseRequest
Source§impl PartialEq for GetCaseRequest
impl PartialEq for GetCaseRequest
impl StructuralPartialEq for GetCaseRequest
Auto Trait Implementations§
impl Freeze for GetCaseRequest
impl RefUnwindSafe for GetCaseRequest
impl Send for GetCaseRequest
impl Sync for GetCaseRequest
impl Unpin for GetCaseRequest
impl UnwindSafe for GetCaseRequest
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