#[non_exhaustive]pub struct AppEngineVersionEndpoint {
pub uri: String,
/* private fields */
}Expand description
Wrapper for the App Engine service version attributes.
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.uri: StringAn App Engine service version name.
Implementations§
Trait Implementations§
Source§impl Clone for AppEngineVersionEndpoint
impl Clone for AppEngineVersionEndpoint
Source§fn clone(&self) -> AppEngineVersionEndpoint
fn clone(&self) -> AppEngineVersionEndpoint
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 AppEngineVersionEndpoint
impl Debug for AppEngineVersionEndpoint
Source§impl Default for AppEngineVersionEndpoint
impl Default for AppEngineVersionEndpoint
Source§fn default() -> AppEngineVersionEndpoint
fn default() -> AppEngineVersionEndpoint
Returns the “default value” for a type. Read more
Source§impl Message for AppEngineVersionEndpoint
impl Message for AppEngineVersionEndpoint
Source§impl PartialEq for AppEngineVersionEndpoint
impl PartialEq for AppEngineVersionEndpoint
impl StructuralPartialEq for AppEngineVersionEndpoint
Auto Trait Implementations§
impl Freeze for AppEngineVersionEndpoint
impl RefUnwindSafe for AppEngineVersionEndpoint
impl Send for AppEngineVersionEndpoint
impl Sync for AppEngineVersionEndpoint
impl Unpin for AppEngineVersionEndpoint
impl UnwindSafe for AppEngineVersionEndpoint
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