#[non_exhaustive]pub struct DeleteStudyRequest {
pub name: String,
/* private fields */
}Available on crate feature
vizier-service only.Expand description
Request message for VizierService.DeleteStudy.
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 name of the Study resource to be deleted.
Format: projects/{project}/locations/{location}/studies/{study}
Implementations§
Trait Implementations§
Source§impl Clone for DeleteStudyRequest
impl Clone for DeleteStudyRequest
Source§fn clone(&self) -> DeleteStudyRequest
fn clone(&self) -> DeleteStudyRequest
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 DeleteStudyRequest
impl Debug for DeleteStudyRequest
Source§impl Default for DeleteStudyRequest
impl Default for DeleteStudyRequest
Source§fn default() -> DeleteStudyRequest
fn default() -> DeleteStudyRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteStudyRequest
impl Message for DeleteStudyRequest
Source§impl PartialEq for DeleteStudyRequest
impl PartialEq for DeleteStudyRequest
impl StructuralPartialEq for DeleteStudyRequest
Auto Trait Implementations§
impl Freeze for DeleteStudyRequest
impl RefUnwindSafe for DeleteStudyRequest
impl Send for DeleteStudyRequest
impl Sync for DeleteStudyRequest
impl Unpin for DeleteStudyRequest
impl UnwindSafe for DeleteStudyRequest
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