pub enum ArchitecturalStyle {
Layered,
Microservices,
EventDriven,
Monolithic,
Serverless,
Unknown,
}Expand description
Architectural style
Variants§
Layered
Layered architecture
Microservices
Microservices architecture
EventDriven
Event-driven architecture
Monolithic
Monolithic architecture
Serverless
Serverless architecture
Unknown
Unknown architecture
Trait Implementations§
Source§impl Clone for ArchitecturalStyle
impl Clone for ArchitecturalStyle
Source§fn clone(&self) -> ArchitecturalStyle
fn clone(&self) -> ArchitecturalStyle
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 ArchitecturalStyle
impl Debug for ArchitecturalStyle
Source§impl<'de> Deserialize<'de> for ArchitecturalStyle
impl<'de> Deserialize<'de> for ArchitecturalStyle
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 PartialEq for ArchitecturalStyle
impl PartialEq for ArchitecturalStyle
Source§impl Serialize for ArchitecturalStyle
impl Serialize for ArchitecturalStyle
impl Copy for ArchitecturalStyle
impl Eq for ArchitecturalStyle
impl StructuralPartialEq for ArchitecturalStyle
Auto Trait Implementations§
impl Freeze for ArchitecturalStyle
impl RefUnwindSafe for ArchitecturalStyle
impl Send for ArchitecturalStyle
impl Sync for ArchitecturalStyle
impl Unpin for ArchitecturalStyle
impl UnwindSafe for ArchitecturalStyle
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.