pub struct BrainEntry {
pub id: String,
pub entry_type: String,
pub name: String,
pub tags: Vec<String>,
pub repos: Vec<String>,
pub updated: Option<String>,
pub body: String,
}Fields§
§id: String§entry_type: String§name: String§repos: Vec<String>§updated: Option<String>§body: StringTrait Implementations§
Source§impl Clone for BrainEntry
impl Clone for BrainEntry
Source§fn clone(&self) -> BrainEntry
fn clone(&self) -> BrainEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BrainEntry
impl Debug for BrainEntry
Source§impl<'de> Deserialize<'de> for BrainEntry
impl<'de> Deserialize<'de> for BrainEntry
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 BrainEntry
impl RefUnwindSafe for BrainEntry
impl Send for BrainEntry
impl Sync for BrainEntry
impl Unpin for BrainEntry
impl UnsafeUnpin for BrainEntry
impl UnwindSafe for BrainEntry
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