pub struct Setting {
pub gist: Option<String>,
pub href: Option<String>,
pub notes: Vec<String>,
pub body: Option<Markup>,
}Expand description
How one tool call is set: what its summary line says, and what its fold holds. A call whose subject the summary already states in full has no body, and is set flat with no fold to open.
Fields§
§gist: Option<String>§href: Option<String>Where the gist points, when the call’s subject is a URL.
notes: Vec<String>Qualifiers: options that change what the call does, which the subject its body shows doesn’t say.
body: Option<Markup>Auto Trait Implementations§
impl Freeze for Setting
impl RefUnwindSafe for Setting
impl Send for Setting
impl Sync for Setting
impl Unpin for Setting
impl UnsafeUnpin for Setting
impl UnwindSafe for Setting
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