pub struct QuotaClassSetBuilder { /* private fields */ }Expand description
Builder for QuotaClassSet.
Implementations§
Source§impl QuotaClassSetBuilder
impl QuotaClassSetBuilder
Sourcepub fn cores(&mut self, value: i32) -> &mut Self
pub fn cores(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn fixed_ips(&mut self, value: i32) -> &mut Self
pub fn fixed_ips(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn floating_ips(&mut self, value: i32) -> &mut Self
pub fn floating_ips(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn injected_file_content_bytes(&mut self, value: i32) -> &mut Self
pub fn injected_file_content_bytes(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn injected_file_path_bytes(&mut self, value: i32) -> &mut Self
pub fn injected_file_path_bytes(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn injected_files(&mut self, value: i32) -> &mut Self
pub fn injected_files(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn instances(&mut self, value: i32) -> &mut Self
pub fn instances(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn key_pairs(&mut self, value: i32) -> &mut Self
pub fn key_pairs(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn metadata_items(&mut self, value: i32) -> &mut Self
pub fn metadata_items(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn networks(&mut self, value: i32) -> &mut Self
pub fn networks(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn ram(&mut self, value: i32) -> &mut Self
pub fn ram(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn security_group_rules(&mut self, value: i32) -> &mut Self
pub fn security_group_rules(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn security_groups(&mut self, value: i32) -> &mut Self
pub fn security_groups(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn server_group_members(&mut self, value: i32) -> &mut Self
pub fn server_group_members(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn server_groups(&mut self, value: i32) -> &mut Self
pub fn server_groups(&mut self, value: i32) -> &mut Self
The number of allowed injected files for the quota class.
Available until version 2.56
Sourcepub fn build(&self) -> Result<QuotaClassSet, QuotaClassSetBuilderError>
pub fn build(&self) -> Result<QuotaClassSet, QuotaClassSetBuilderError>
Trait Implementations§
Source§impl Clone for QuotaClassSetBuilder
impl Clone for QuotaClassSetBuilder
Source§fn clone(&self) -> QuotaClassSetBuilder
fn clone(&self) -> QuotaClassSetBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for QuotaClassSetBuilder
impl RefUnwindSafe for QuotaClassSetBuilder
impl Send for QuotaClassSetBuilder
impl Sync for QuotaClassSetBuilder
impl Unpin for QuotaClassSetBuilder
impl UnwindSafe for QuotaClassSetBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more