pub struct DefaultFullCelExpression<'a> {
pub request: DefaultRequestCertification<'a>,
pub response: DefaultResponseCertification<'a>,
}Expand description
Options for configuring a CEL expression that includes both the HttpResponse and HttpRequest in certification.
Fields§
§request: DefaultRequestCertification<'a>Options for configuring request certification for this CEL expression. See DefaultRequestCertification for details on how to configure request certification.
response: DefaultResponseCertification<'a>Options for configuring response certification for this CEL expression. See DefaultResponseCertification for details on how to configure response certification.
Trait Implementations§
Source§impl<'a> Clone for DefaultFullCelExpression<'a>
impl<'a> Clone for DefaultFullCelExpression<'a>
Source§fn clone(&self) -> DefaultFullCelExpression<'a>
fn clone(&self) -> DefaultFullCelExpression<'a>
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<'a> Debug for DefaultFullCelExpression<'a>
impl<'a> Debug for DefaultFullCelExpression<'a>
Source§impl Display for DefaultFullCelExpression<'_>
impl Display for DefaultFullCelExpression<'_>
Source§impl<'a> PartialEq for DefaultFullCelExpression<'a>
impl<'a> PartialEq for DefaultFullCelExpression<'a>
Source§fn eq(&self, other: &DefaultFullCelExpression<'a>) -> bool
fn eq(&self, other: &DefaultFullCelExpression<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Eq for DefaultFullCelExpression<'a>
impl<'a> StructuralPartialEq for DefaultFullCelExpression<'a>
Auto Trait Implementations§
impl<'a> Freeze for DefaultFullCelExpression<'a>
impl<'a> RefUnwindSafe for DefaultFullCelExpression<'a>
impl<'a> Send for DefaultFullCelExpression<'a>
impl<'a> Sync for DefaultFullCelExpression<'a>
impl<'a> Unpin for DefaultFullCelExpression<'a>
impl<'a> UnwindSafe for DefaultFullCelExpression<'a>
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