Struct lnd_grpc_rust::lnrpc::MiddlewareRegistration
source · pub struct MiddlewareRegistration {
pub middleware_name: String,
pub custom_macaroon_caveat_name: String,
pub read_only_mode: bool,
}
Fields§
§middleware_name: String
The name of the middleware to register. The name should be as informative as possible and is logged on registration.
custom_macaroon_caveat_name: String
The name of the custom macaroon caveat that this middleware is responsible for. Only requests/responses that contain a macaroon with the registered custom caveat are forwarded for interception to the middleware. The exception being the read-only mode: All requests/responses are forwarded to a middleware that requests read-only access but such a middleware won’t be allowed to alter responses. As a security measure, no middleware can change responses to requests made with unencumbered macaroons! NOTE: Cannot be used at the same time as read_only_mode.
read_only_mode: bool
Instead of defining a custom macaroon caveat name a middleware can register itself for read-only access only. In that mode all requests/responses are forwarded to the middleware but the middleware isn’t allowed to alter any of the responses. NOTE: Cannot be used at the same time as custom_macaroon_caveat_name.
Trait Implementations§
source§impl Clone for MiddlewareRegistration
impl Clone for MiddlewareRegistration
source§fn clone(&self) -> MiddlewareRegistration
fn clone(&self) -> MiddlewareRegistration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MiddlewareRegistration
impl Debug for MiddlewareRegistration
source§impl Default for MiddlewareRegistration
impl Default for MiddlewareRegistration
source§impl Message for MiddlewareRegistration
impl Message for MiddlewareRegistration
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
self
. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
self
.source§impl PartialEq for MiddlewareRegistration
impl PartialEq for MiddlewareRegistration
source§fn eq(&self, other: &MiddlewareRegistration) -> bool
fn eq(&self, other: &MiddlewareRegistration) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MiddlewareRegistration
Auto Trait Implementations§
impl RefUnwindSafe for MiddlewareRegistration
impl Send for MiddlewareRegistration
impl Sync for MiddlewareRegistration
impl Unpin for MiddlewareRegistration
impl UnwindSafe for MiddlewareRegistration
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§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>
T
in a tonic::Request