#[non_exhaustive]pub enum Parameters {
ClientSecretParameters(ClientSecretParameters),
EvaluateJsParameters(EvaluateJSParameters),
EvaluateHashcashParameters(HashCashParameters),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ClientSecretParameters(ClientSecretParameters)
EvaluateJsParameters(EvaluateJSParameters)
EvaluateHashcashParameters(HashCashParameters)
Trait Implementations§
Source§impl Clone for Parameters
impl Clone for Parameters
Source§fn clone(&self) -> Parameters
fn clone(&self) -> Parameters
Returns a copy 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 Debug for Parameters
impl Debug for Parameters
Source§impl OneofFull for Parameters
impl OneofFull for Parameters
Source§fn descriptor() -> OneofDescriptor
fn descriptor() -> OneofDescriptor
Descriptor object for this oneof.
Source§impl PartialEq for Parameters
impl PartialEq for Parameters
impl Oneof for Parameters
impl StructuralPartialEq for Parameters
Auto Trait Implementations§
impl !Freeze for Parameters
impl RefUnwindSafe for Parameters
impl Send for Parameters
impl Sync for Parameters
impl Unpin for Parameters
impl UnwindSafe for Parameters
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