pub enum Environment {
Release,
Staging,
Develop,
}Expand description
Environment represents the deployments of the ecosystem, which devices are built for and clouds run in, each with its own roots. Every environment can be named in every build, but its root keys are only embedded when the crate feature of the same name is enabled. An environment without keys has empty root sets, so nothing verifies under it.
Variants§
Release
The environment serving actual users, with devices manufactured for it.
Staging
The pre-release verification environment.
Develop
The development deployments.
Trait Implementations§
Source§impl Clone for Environment
impl Clone for Environment
Source§fn clone(&self) -> Environment
fn clone(&self) -> Environment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Environment
Source§impl Debug for Environment
impl Debug for Environment
Source§impl Display for Environment
impl Display for Environment
impl Eq for Environment
Source§impl Hash for Environment
impl Hash for Environment
Source§impl PartialEq for Environment
impl PartialEq for Environment
impl StructuralPartialEq for Environment
Auto Trait Implementations§
impl Freeze for Environment
impl RefUnwindSafe for Environment
impl Send for Environment
impl Sync for Environment
impl Unpin for Environment
impl UnsafeUnpin for Environment
impl UnwindSafe for Environment
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