pub struct SarifMessage {
pub text: String,
}Expand description
Message structure.
Fields§
§text: StringMessage text.
Trait Implementations§
Source§impl Clone for SarifMessage
impl Clone for SarifMessage
Source§fn clone(&self) -> SarifMessage
fn clone(&self) -> SarifMessage
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 SarifMessage
impl Debug for SarifMessage
Source§impl<'de> Deserialize<'de> for SarifMessage
impl<'de> Deserialize<'de> for SarifMessage
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 SarifMessage
impl RefUnwindSafe for SarifMessage
impl Send for SarifMessage
impl Sync for SarifMessage
impl Unpin for SarifMessage
impl UnsafeUnpin for SarifMessage
impl UnwindSafe for SarifMessage
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