#[non_exhaustive]pub enum ResourceName {
Listing(String),
DataExchange(String),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Listing(String)
Output only. Resource name of the source Listing. e.g. projects/123/locations/us/dataExchanges/456/listings/789
DataExchange(String)
Output only. Resource name of the source Data Exchange. e.g. projects/123/locations/us/dataExchanges/456
Trait Implementations§
Source§impl Clone for ResourceName
impl Clone for ResourceName
Source§fn clone(&self) -> ResourceName
fn clone(&self) -> ResourceName
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 ResourceName
impl Debug for ResourceName
Source§impl PartialEq for ResourceName
impl PartialEq for ResourceName
impl StructuralPartialEq for ResourceName
Auto Trait Implementations§
impl Freeze for ResourceName
impl RefUnwindSafe for ResourceName
impl Send for ResourceName
impl Sync for ResourceName
impl Unpin for ResourceName
impl UnsafeUnpin for ResourceName
impl UnwindSafe for ResourceName
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