#[non_exhaustive]pub struct UrlMapReference {
pub url_map: Option<String>,
/* private fields */
}Available on crate features
region-target-http-proxies or region-target-https-proxies or target-http-proxies or target-https-proxies only.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.url_map: Option<String>Implementations§
Source§impl UrlMapReference
impl UrlMapReference
pub fn new() -> Self
Sourcepub fn set_url_map<T>(self, v: T) -> Self
pub fn set_url_map<T>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for UrlMapReference
impl Clone for UrlMapReference
Source§fn clone(&self) -> UrlMapReference
fn clone(&self) -> UrlMapReference
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 UrlMapReference
impl Debug for UrlMapReference
Source§impl Default for UrlMapReference
impl Default for UrlMapReference
Source§fn default() -> UrlMapReference
fn default() -> UrlMapReference
Returns the “default value” for a type. Read more
Source§impl Message for UrlMapReference
impl Message for UrlMapReference
Source§impl PartialEq for UrlMapReference
impl PartialEq for UrlMapReference
impl StructuralPartialEq for UrlMapReference
Auto Trait Implementations§
impl Freeze for UrlMapReference
impl RefUnwindSafe for UrlMapReference
impl Send for UrlMapReference
impl Sync for UrlMapReference
impl Unpin for UrlMapReference
impl UnwindSafe for UrlMapReference
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