pub struct Pattern {
pub id: String,
pub name: String,
pub category: String,
pub regex_pattern: String,
pub preference_category: Option<String>,
pub preference_key: Option<String>,
pub description: Option<String>,
pub created_at: String,
}Fieldsยง
ยงid: Stringยงname: Stringยงcategory: Stringยงregex_pattern: Stringยงpreference_category: Option<String>ยงpreference_key: Option<String>ยงdescription: Option<String>ยงcreated_at: StringTrait Implementationsยง
Sourceยงimpl<'de> Deserialize<'de> for Pattern
impl<'de> Deserialize<'de> for Pattern
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 Pattern
impl RefUnwindSafe for Pattern
impl Send for Pattern
impl Sync for Pattern
impl Unpin for Pattern
impl UnsafeUnpin for Pattern
impl UnwindSafe for Pattern
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