pub enum MeshPeer {
Tier(TierTag),
CrossTenant {
tenant: TenantId,
namespace: NamespaceId,
name: MeshIdent,
},
}Expand description
A peer permitted to initiate mesh connections to a workload (W206 / R558-F3).
Cross-tenant access is deny-by-default: a workload accepts inter-tenant
traffic only from peers it lists explicitly as MeshPeer::CrossTenant.
Same-tenant access stays tier-based (MeshPeer::Tier) — the pre-R558
model — and an allow_from with no Tier entries still admits every
same-tenant peer (the historical “empty = allow all” default).
External serde tagging keeps this postcard-safe (R590-B3): no internal tag,
no untagged, no skip_serializing_if.
Variants§
Tier(TierTag)
Any same-tenant workload whose tier matches this tag. This is the
pre-R558 allow_from semantics.
CrossTenant
A specific workload in another tenant, addressed by its fully
qualified mesh identity <tenant>/<namespace>/<name>. There is no
cross-tenant tier wildcard — each cross-tenant peer is granted
individually, so a shared fleet stays isolated unless an operator opts
in here.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MeshPeer
impl<'de> Deserialize<'de> for MeshPeer
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>,
impl Eq for MeshPeer
impl StructuralPartialEq for MeshPeer
Source§impl TS for MeshPeer
impl TS for MeshPeer
Source§type WithoutGenerics = MeshPeer
type WithoutGenerics = MeshPeer
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = MeshPeer
type OptionInnerType = MeshPeer
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read moreSource§fn export_to_string(cfg: &Config) -> Result<String, ExportError>where
Self: 'static,
fn export_to_string(cfg: &Config) -> Result<String, ExportError>where
Self: 'static,
Auto Trait Implementations§
impl Freeze for MeshPeer
impl RefUnwindSafe for MeshPeer
impl Send for MeshPeer
impl Sync for MeshPeer
impl Unpin for MeshPeer
impl UnsafeUnpin for MeshPeer
impl UnwindSafe for MeshPeer
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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
key and return true if they are equal.