pub struct PatchRequestRequest<'a> {
pub request_id: String,
pub assignees: Vec<Value>,
pub fields: Fields,
pub project_id: String,
pub requestor_id: Option<String>,
pub sample_groups: Vec<RequestSampleGroupCreate>,
pub scheduled_on: String,
pub request_status: String,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§request_id: String
§assignees: Vec<Value>
§fields: Fields
§project_id: String
§requestor_id: Option<String>
§sample_groups: Vec<RequestSampleGroupCreate>
§scheduled_on: String
§request_status: String
Implementations§
Source§impl<'a> PatchRequestRequest<'a>
impl<'a> PatchRequestRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for PatchRequestRequest<'a>
impl<'a> !RefUnwindSafe for PatchRequestRequest<'a>
impl<'a> Send for PatchRequestRequest<'a>
impl<'a> Sync for PatchRequestRequest<'a>
impl<'a> Unpin for PatchRequestRequest<'a>
impl<'a> !UnwindSafe for PatchRequestRequest<'a>
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