pub enum NodeKind {
Actor,
Client,
Service,
Function,
Worker,
Database,
Cache,
Queue,
Storage,
External,
}Expand description
Coarse architectural meaning of a node.
Variants§
Actor
Person, role, team, or autonomous participant.
Client
Browser, application, device, or other client.
Service
Long-running application, API, gateway, or general component.
Function
On-demand or serverless compute unit.
Worker
Background processor or scheduled job.
Database
Durable queryable datastore.
Cache
Disposable or derived datastore.
Queue
Queue, stream, bus, or broker.
Storage
Blob, object, file, or archival storage.
External
System outside the architecture’s control boundary.
Trait Implementations§
impl Copy for NodeKind
impl Eq for NodeKind
impl StructuralPartialEq for NodeKind
Auto Trait Implementations§
impl Freeze for NodeKind
impl RefUnwindSafe for NodeKind
impl Send for NodeKind
impl Sync for NodeKind
impl Unpin for NodeKind
impl UnsafeUnpin for NodeKind
impl UnwindSafe for NodeKind
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