#[non_exhaustive]pub struct DeleteUrlListRequest {
pub name: String,
/* private fields */
}Expand description
Request used by the DeleteUrlList 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. A name of the UrlList to delete. Must be in
the format projects/*/locations/{location}/urlLists/*.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteUrlListRequest
impl Clone for DeleteUrlListRequest
Source§fn clone(&self) -> DeleteUrlListRequest
fn clone(&self) -> DeleteUrlListRequest
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 DeleteUrlListRequest
impl Debug for DeleteUrlListRequest
Source§impl Default for DeleteUrlListRequest
impl Default for DeleteUrlListRequest
Source§fn default() -> DeleteUrlListRequest
fn default() -> DeleteUrlListRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteUrlListRequest
impl Message for DeleteUrlListRequest
Source§impl PartialEq for DeleteUrlListRequest
impl PartialEq for DeleteUrlListRequest
impl StructuralPartialEq for DeleteUrlListRequest
Auto Trait Implementations§
impl Freeze for DeleteUrlListRequest
impl RefUnwindSafe for DeleteUrlListRequest
impl Send for DeleteUrlListRequest
impl Sync for DeleteUrlListRequest
impl Unpin for DeleteUrlListRequest
impl UnsafeUnpin for DeleteUrlListRequest
impl UnwindSafe for DeleteUrlListRequest
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