#[non_exhaustive]pub struct CheckInLicenseInput {
pub license_consumption_token: Option<String>,
pub beneficiary: Option<String>,
}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.license_consumption_token: Option<String>License consumption token.
beneficiary: Option<String>License beneficiary.
Implementations§
source§impl CheckInLicenseInput
impl CheckInLicenseInput
sourcepub fn license_consumption_token(&self) -> Option<&str>
pub fn license_consumption_token(&self) -> Option<&str>
License consumption token.
sourcepub fn beneficiary(&self) -> Option<&str>
pub fn beneficiary(&self) -> Option<&str>
License beneficiary.
source§impl CheckInLicenseInput
impl CheckInLicenseInput
sourcepub fn builder() -> CheckInLicenseInputBuilder
pub fn builder() -> CheckInLicenseInputBuilder
Creates a new builder-style object to manufacture CheckInLicenseInput.
Trait Implementations§
source§impl Clone for CheckInLicenseInput
impl Clone for CheckInLicenseInput
source§fn clone(&self) -> CheckInLicenseInput
fn clone(&self) -> CheckInLicenseInput
Returns a copy 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 CheckInLicenseInput
impl Debug for CheckInLicenseInput
source§impl PartialEq<CheckInLicenseInput> for CheckInLicenseInput
impl PartialEq<CheckInLicenseInput> for CheckInLicenseInput
source§fn eq(&self, other: &CheckInLicenseInput) -> bool
fn eq(&self, other: &CheckInLicenseInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CheckInLicenseInput
Auto Trait Implementations§
impl RefUnwindSafe for CheckInLicenseInput
impl Send for CheckInLicenseInput
impl Sync for CheckInLicenseInput
impl Unpin for CheckInLicenseInput
impl UnwindSafe for CheckInLicenseInput
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