pub struct Bullet {
pub id: String,
pub section: String,
pub content: String,
pub helpful: i64,
pub harmful: i64,
pub neutral: i64,
pub created_at: String,
pub updated_at: String,
}Expand description
Single playbook entry storing a strategy or insight.
Fields§
§id: String§section: String§content: String§helpful: i64§harmful: i64§neutral: i64§created_at: String§updated_at: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bullet
impl<'de> Deserialize<'de> for Bullet
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 Bullet
impl RefUnwindSafe for Bullet
impl Send for Bullet
impl Sync for Bullet
impl Unpin for Bullet
impl UnsafeUnpin for Bullet
impl UnwindSafe for Bullet
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