pub enum MachineProfile {
Nano,
Micro,
Small,
Medium,
Large,
XLarge,
XXLarge,
}Expand description
Predefined instance profiles with fixed vCPU and RAM.
They only exist to provide convenient default values — the actual
network tuning is derived from the resolved ram_mb and cpu_cores.
| Profile | vCPU | RAM |
|---|---|---|
| Nano | 2 | 512 MB |
| Micro | 2 | 1 GB |
| Small | 2 | 2 GB |
| Medium | 2 | 4 GB |
| Large | 2 | 8 GB |
| XLarge | 4 | 16 GB |
| XXLarge | 8 | 32 GB |
Variants§
Nano
2 vCPU, 512 MB RAM.
Micro
2 vCPU, 1 GB RAM.
Small
2 vCPU, 2 GB RAM.
Medium
2 vCPU, 4 GB RAM.
Large
2 vCPU, 8 GB RAM.
XLarge
4 vCPU, 16 GB RAM.
XXLarge
8 vCPU, 32 GB RAM.
Implementations§
Trait Implementations§
Source§impl Clone for MachineProfile
impl Clone for MachineProfile
Source§fn clone(&self) -> MachineProfile
fn clone(&self) -> MachineProfile
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 MachineProfile
impl Debug for MachineProfile
Source§impl<'de> Deserialize<'de> for MachineProfile
impl<'de> Deserialize<'de> for MachineProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MachineProfile
impl Display for MachineProfile
Source§impl PartialEq for MachineProfile
impl PartialEq for MachineProfile
Source§impl Serialize for MachineProfile
impl Serialize for MachineProfile
impl Copy for MachineProfile
impl Eq for MachineProfile
impl StructuralPartialEq for MachineProfile
Auto Trait Implementations§
impl Freeze for MachineProfile
impl RefUnwindSafe for MachineProfile
impl Send for MachineProfile
impl Sync for MachineProfile
impl Unpin for MachineProfile
impl UnsafeUnpin for MachineProfile
impl UnwindSafe for MachineProfile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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>
Converts
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>
Converts
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.