pub struct RuleSearch {
pub author: String,
pub book_list: String,
pub book_url: String,
pub cover_url: String,
pub intro: String,
pub kind: String,
pub name: String,
pub word_count: String,
}Fields§
§book_list: String§book_url: String§cover_url: String§intro: String§kind: String§name: String§word_count: StringTrait Implementations§
Source§impl Clone for RuleSearch
impl Clone for RuleSearch
Source§fn clone(&self) -> RuleSearch
fn clone(&self) -> RuleSearch
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 RuleSearch
impl Debug for RuleSearch
Source§impl<'de> Deserialize<'de> for RuleSearch
impl<'de> Deserialize<'de> for RuleSearch
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
Source§impl Serialize for RuleSearch
impl Serialize for RuleSearch
Source§impl TryFrom<&RuleSearch> for JsonRuleSearch
impl TryFrom<&RuleSearch> for JsonRuleSearch
Source§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
Source§impl TryFrom<RuleSearch> for JsonRuleSearch
impl TryFrom<RuleSearch> for JsonRuleSearch
Source§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for RuleSearch
impl RefUnwindSafe for RuleSearch
impl Send for RuleSearch
impl Sync for RuleSearch
impl Unpin for RuleSearch
impl UnwindSafe for RuleSearch
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