Home
last modified time | relevance | path

Searched refs:AuthGraphOperationCode (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/system/authgraph/wire/src/
H A Dlib.rs122 pub enum AuthGraphOperationCode { enum
138 fn code(&self) -> AuthGraphOperationCode { in code() argument
140 Self::Create(_) => AuthGraphOperationCode::Create, in code()
141 Self::Init(_) => AuthGraphOperationCode::Init, in code()
142 Self::Finish(_) => AuthGraphOperationCode::Finish, in code()
143 Self::AuthenticationComplete(_) => AuthGraphOperationCode::AuthenticationComplete, in code()
156 let code = AuthGraphOperationCode::n(code).ok_or(CborError::NonEnumValue)?; in from_cbor_value()
158 AuthGraphOperationCode::Create => Self::Create(CreateRequest::from_cbor_value(val)?), in from_cbor_value()
159 AuthGraphOperationCode::Init => Self::Init(InitRequest::from_cbor_value(val)?), in from_cbor_value()
160 AuthGraphOperationCode::Finish => Self::Finish(FinishRequest::from_cbor_value(val)?), in from_cbor_value()
[all …]