Struct aws_sdk_licensemanager::types::BorrowConfiguration
source · #[non_exhaustive]pub struct BorrowConfiguration {
pub allow_early_check_in: Option<bool>,
pub max_time_to_live_in_minutes: Option<i32>,
}Expand description
Details about a borrow configuration.
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.allow_early_check_in: Option<bool>Indicates whether early check-ins are allowed.
max_time_to_live_in_minutes: Option<i32>Maximum time for the borrow configuration, in minutes.
Implementations§
source§impl BorrowConfiguration
impl BorrowConfiguration
sourcepub fn allow_early_check_in(&self) -> Option<bool>
pub fn allow_early_check_in(&self) -> Option<bool>
Indicates whether early check-ins are allowed.
sourcepub fn max_time_to_live_in_minutes(&self) -> Option<i32>
pub fn max_time_to_live_in_minutes(&self) -> Option<i32>
Maximum time for the borrow configuration, in minutes.
source§impl BorrowConfiguration
impl BorrowConfiguration
sourcepub fn builder() -> BorrowConfigurationBuilder
pub fn builder() -> BorrowConfigurationBuilder
Creates a new builder-style object to manufacture BorrowConfiguration.
Trait Implementations§
source§impl Clone for BorrowConfiguration
impl Clone for BorrowConfiguration
source§fn clone(&self) -> BorrowConfiguration
fn clone(&self) -> BorrowConfiguration
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 BorrowConfiguration
impl Debug for BorrowConfiguration
source§impl PartialEq<BorrowConfiguration> for BorrowConfiguration
impl PartialEq<BorrowConfiguration> for BorrowConfiguration
source§fn eq(&self, other: &BorrowConfiguration) -> bool
fn eq(&self, other: &BorrowConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BorrowConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for BorrowConfiguration
impl Send for BorrowConfiguration
impl Sync for BorrowConfiguration
impl Unpin for BorrowConfiguration
impl UnwindSafe for BorrowConfiguration
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