pub struct JsonSubtitleBody {
pub from: f32,
pub to: f32,
pub content: String,
}Expand description
Lines inside a Bilibili JSON subtitle.
Fields§
§from: f32§to: f32§content: StringTrait Implementations§
Source§impl Clone for JsonSubtitleBody
impl Clone for JsonSubtitleBody
Source§fn clone(&self) -> JsonSubtitleBody
fn clone(&self) -> JsonSubtitleBody
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 Debug for JsonSubtitleBody
impl Debug for JsonSubtitleBody
Source§impl<'de> Deserialize<'de> for JsonSubtitleBody
impl<'de> Deserialize<'de> for JsonSubtitleBody
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
Source§impl PartialEq for JsonSubtitleBody
impl PartialEq for JsonSubtitleBody
Source§impl PartialOrd for JsonSubtitleBody
impl PartialOrd for JsonSubtitleBody
Source§impl Serialize for JsonSubtitleBody
impl Serialize for JsonSubtitleBody
impl StructuralPartialEq for JsonSubtitleBody
Auto Trait Implementations§
impl Freeze for JsonSubtitleBody
impl RefUnwindSafe for JsonSubtitleBody
impl Send for JsonSubtitleBody
impl Sync for JsonSubtitleBody
impl Unpin for JsonSubtitleBody
impl UnwindSafe for JsonSubtitleBody
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