#[non_exhaustive]pub struct UndeleteProjectRequest {
pub name: String,
}Expand description
The request sent to the [UndeleteProject] [google.cloud.resourcemanager.v3.Projects.UndeleteProject] method.
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 project (for example, projects/415104041262).
Required.
Implementations§
Trait Implementations§
Source§impl Clone for UndeleteProjectRequest
impl Clone for UndeleteProjectRequest
Source§fn clone(&self) -> UndeleteProjectRequest
fn clone(&self) -> UndeleteProjectRequest
Returns a copy 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 UndeleteProjectRequest
impl Debug for UndeleteProjectRequest
Source§impl Default for UndeleteProjectRequest
impl Default for UndeleteProjectRequest
Source§fn default() -> UndeleteProjectRequest
fn default() -> UndeleteProjectRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UndeleteProjectRequestwhere
UndeleteProjectRequest: Default,
impl<'de> Deserialize<'de> for UndeleteProjectRequestwhere
UndeleteProjectRequest: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for UndeleteProjectRequest
impl Message for UndeleteProjectRequest
Source§impl PartialEq for UndeleteProjectRequest
impl PartialEq for UndeleteProjectRequest
Source§impl Serialize for UndeleteProjectRequest
impl Serialize for UndeleteProjectRequest
impl StructuralPartialEq for UndeleteProjectRequest
Auto Trait Implementations§
impl Freeze for UndeleteProjectRequest
impl RefUnwindSafe for UndeleteProjectRequest
impl Send for UndeleteProjectRequest
impl Sync for UndeleteProjectRequest
impl Unpin for UndeleteProjectRequest
impl UnwindSafe for UndeleteProjectRequest
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