pub struct JellyfinLogEntry {
pub id: u16,
pub name: String,
pub overview: Option<String>,
pub short_overview: Option<String>,
pub type: String,
pub date: String,
pub user_id: String,
pub user_primary_image_tag: Option<String>,
pub severity: String,
}Expand description
Structure received from /System/ActivityLog/Entries API calls.
Fields§
§id: u16§name: String§overview: Option<String>§short_overview: Option<String>§type: String§date: String§user_id: String§user_primary_image_tag: Option<String>§severity: StringTrait Implementations§
Source§impl Debug for JellyfinLogEntry
impl Debug for JellyfinLogEntry
Source§impl<'de> Deserialize<'de> for JellyfinLogEntry
impl<'de> Deserialize<'de> for JellyfinLogEntry
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 JellyfinLogEntry
impl RefUnwindSafe for JellyfinLogEntry
impl Send for JellyfinLogEntry
impl Sync for JellyfinLogEntry
impl Unpin for JellyfinLogEntry
impl UnwindSafe for JellyfinLogEntry
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