#[non_exhaustive]pub struct RustyPipeInfo<'a> {
pub package: &'a str,
pub version: &'a str,
pub date: OffsetDateTime,
pub language: Option<Language>,
pub botguard_version: Option<&'a str>,
}Expand description
Information about the RustyPipe client
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.package: &'a strRust package name (rustypipe)
version: &'a strPackage version (0.1.0)
date: OffsetDateTimeDate/Time when the event occurred
language: Option<Language>YouTube content language
botguard_version: Option<&'a str>RustyPipe Botguard version (rustypipe-botguard 0.1.1)
Trait Implementations§
Source§impl<'a> Clone for RustyPipeInfo<'a>
impl<'a> Clone for RustyPipeInfo<'a>
Source§fn clone(&self) -> RustyPipeInfo<'a>
fn clone(&self) -> RustyPipeInfo<'a>
Returns a duplicate 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<'a> Debug for RustyPipeInfo<'a>
impl<'a> Debug for RustyPipeInfo<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for RustyPipeInfo<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RustyPipeInfo<'a>
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<'a> Freeze for RustyPipeInfo<'a>
impl<'a> RefUnwindSafe for RustyPipeInfo<'a>
impl<'a> Send for RustyPipeInfo<'a>
impl<'a> Sync for RustyPipeInfo<'a>
impl<'a> Unpin for RustyPipeInfo<'a>
impl<'a> UnwindSafe for RustyPipeInfo<'a>
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