pub struct Problem { /* private fields */ }Implementations§
Source§impl Problem
impl Problem
Sourcepub fn from_code(code: &str) -> Result<Self, Error>
pub fn from_code(code: &str) -> Result<Self, Error>
Parses given code into new instance of Problem If given string does not match regex “” - returns Err.
Sourcepub fn from_known_problem(problem: KnownProblems) -> Self
pub fn from_known_problem(problem: KnownProblems) -> Self
Takes KnownProblem variant and creates new Problem
using it as code.
Kwnown problems are defined in the specifications of
the didcomm v2.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Problem
impl<'de> Deserialize<'de> for Problem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Problem
impl RefUnwindSafe for Problem
impl Send for Problem
impl Sync for Problem
impl Unpin for Problem
impl UnsafeUnpin for Problem
impl UnwindSafe for Problem
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