lower rust versions really don't like this
This commit is contained in:
parent
da6ec998c9
commit
d20e6d4b2b
1 changed files with 2 additions and 2 deletions
|
@ -3,8 +3,8 @@ use secret::SecretKind;
|
|||
|
||||
#[macro_export]
|
||||
macro_rules! impl_validator_using_provider {
|
||||
( $type:ty, $secret:ty ) => {
|
||||
impl $crate::server::Validator<$secret> for $type {
|
||||
( $validator:ty, $secret:ty ) => {
|
||||
impl $crate::server::Validator<$secret> for $validator {
|
||||
fn validate(&self, identity: &$crate::common::Identity
|
||||
, value: &<$secret as sasl::secret::SecretKind>::Value) -> Result<(), String> {
|
||||
if &(self as &$crate::server::Provider<$secret>).provide(identity)? == value {
|
||||
|
|
Loading…
Reference in a new issue