pub enum ServerSurface {
Public,
AdminOnly,
MetricsOnly,
}Expand description
PLAN.md Phase 6.2 — endpoint segregation. A given HTTP listener
can serve either every public surface (Public, default) or a
restricted slice (AdminOnly, MetricsOnly). The route filter at
the top of route() consults this so a port bound only to
loopback for admin work won’t accidentally hand out DML.
Variants§
Public
Everything routed normally (default — matches v0 behaviour).
AdminOnly
Only /admin/*, /metrics, and /health/*. Other paths
return 404. Intended for RED_ADMIN_BIND operator listeners
which default to 127.0.0.1.
MetricsOnly
Only /metrics and /health/*. Intended for
RED_METRICS_BIND Prometheus scrape ports that may be
exposed to non-admin networks.
Trait Implementations§
Source§impl Clone for ServerSurface
impl Clone for ServerSurface
Source§fn clone(&self) -> ServerSurface
fn clone(&self) -> ServerSurface
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 moreSource§impl Debug for ServerSurface
impl Debug for ServerSurface
Source§impl PartialEq for ServerSurface
impl PartialEq for ServerSurface
Source§fn eq(&self, other: &ServerSurface) -> bool
fn eq(&self, other: &ServerSurface) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ServerSurface
impl Eq for ServerSurface
impl StructuralPartialEq for ServerSurface
Auto Trait Implementations§
impl Freeze for ServerSurface
impl RefUnwindSafe for ServerSurface
impl Send for ServerSurface
impl Sync for ServerSurface
impl Unpin for ServerSurface
impl UnsafeUnpin for ServerSurface
impl UnwindSafe for ServerSurface
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§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<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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request