#[non_exhaustive]pub struct GetXpnHostRequest {
pub project: String,
/* private fields */
}Available on crate feature
projects only.Expand description
Synthetic request message for the getXpnHost() 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.project: StringProject ID for this request.
Implementations§
Trait Implementations§
Source§impl Clone for GetXpnHostRequest
impl Clone for GetXpnHostRequest
Source§fn clone(&self) -> GetXpnHostRequest
fn clone(&self) -> GetXpnHostRequest
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 GetXpnHostRequest
impl Debug for GetXpnHostRequest
Source§impl Default for GetXpnHostRequest
impl Default for GetXpnHostRequest
Source§fn default() -> GetXpnHostRequest
fn default() -> GetXpnHostRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetXpnHostRequest
impl PartialEq for GetXpnHostRequest
impl StructuralPartialEq for GetXpnHostRequest
Auto Trait Implementations§
impl Freeze for GetXpnHostRequest
impl RefUnwindSafe for GetXpnHostRequest
impl Send for GetXpnHostRequest
impl Sync for GetXpnHostRequest
impl Unpin for GetXpnHostRequest
impl UnwindSafe for GetXpnHostRequest
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