Skip to main content

Stat

Struct Stat 

Source
pub struct Stat {
Show 53 fields pub not_ready_field: Value, pub play: i64, pub vt: i64, pub full_play_ratio: i64, pub play_viewer_rate: i64, pub play_viewer_rate_med: i64, pub play_fan_rate: i64, pub play_fan_rate_med: i64, pub active_fans_rate: i64, pub active_fans_med: i64, pub tm_rate: i64, pub tm_rate_med: i64, pub tm_fan_simi_rate_med: i64, pub tm_viewer_simi_rate_med: i64, pub tm_fan_rate: i64, pub tm_viewer_rate: i64, pub tm_pass_rate: i64, pub tm_fan_pass_rate: i64, pub tm_viewer_pass_rate: i64, pub crash_rate: i64, pub crash_rate_med: i64, pub crash_fan_simi_rate_med: i64, pub crash_viewer_simi_rate_med: i64, pub crash_fan_rate: i64, pub crash_viewer_rate: i64, pub interact_rate: i64, pub interact_rate_med: i64, pub interact_fan_simi_rate_med: i64, pub interact_viewer_simi_rate_med: i64, pub interact_fan_rate: i64, pub interact_viewer_rate: i64, pub avg_play_time: i64, pub avg_play_time_int: i64, pub total_new_attention_cnt: i64, pub play_trans_fan_rate: i64, pub play_trans_fan_rate_med: i64, pub like: i64, pub comment: i64, pub dm: i64, pub fav: i64, pub coin: i64, pub share: i64, pub unfollow: i64, pub tm_star: i64, pub tm_viewer_star: i64, pub tm_fan_star: i64, pub crash_p50: i64, pub crash_viewer_p50: i64, pub crash_fan_p50: i64, pub interact_p50: i64, pub interact_viewer_p50: i64, pub interact_fan_p50: i64, pub play_trans_fan_p50: i64,
}

Fields§

§not_ready_field: Value§play: i64

播放数

§vt: i64§full_play_ratio: i64

完播比

§play_viewer_rate: i64

游客播放数占比

§play_viewer_rate_med: i64§play_fan_rate: i64

粉丝观看率

§play_fan_rate_med: i64§active_fans_rate: i64§active_fans_med: i64§tm_rate: i64

封标点击率

§tm_rate_med: i64

自己平均封标点击率

§tm_fan_simi_rate_med: i64

同类up粉丝封标点击率

§tm_viewer_simi_rate_med: i64

同类up游客封标点击率

§tm_fan_rate: i64

粉丝封标点击率

§tm_viewer_rate: i64

游客封标点击率

§tm_pass_rate: i64

封标点击率超过n%同类稿件

§tm_fan_pass_rate: i64

粉丝封标点击率超过n%同类稿件

§tm_viewer_pass_rate: i64

游客封标点击率超过n%同类稿件

§crash_rate: i64

3秒退出率

§crash_rate_med: i64§crash_fan_simi_rate_med: i64

同类up粉丝3秒退出率

§crash_viewer_simi_rate_med: i64

同类up游客3秒退出率

§crash_fan_rate: i64

粉丝3秒退出率

§crash_viewer_rate: i64

游客3秒退出率

§interact_rate: i64

互动率

§interact_rate_med: i64§interact_fan_simi_rate_med: i64

同类up粉丝互动率

§interact_viewer_simi_rate_med: i64

同类up游客互动率

§interact_fan_rate: i64

粉丝互动率

§interact_viewer_rate: i64

游客互动率

§avg_play_time: i64

平均播放时间(目前总是0)

§avg_play_time_int: i64§total_new_attention_cnt: i64

涨粉

§play_trans_fan_rate: i64

播转粉率

§play_trans_fan_rate_med: i64

其他up平均播转粉率

§like: i64

点赞数

§comment: i64

评论数

§dm: i64

弹幕数

§fav: i64

收藏数

§coin: i64

投币数

§share: i64

分享数

§unfollow: i64§tm_star: i64§tm_viewer_star: i64§tm_fan_star: i64§crash_p50: i64§crash_viewer_p50: i64§crash_fan_p50: i64§interact_p50: i64§interact_viewer_p50: i64§interact_fan_p50: i64§play_trans_fan_p50: i64

Trait Implementations§

Source§

impl Clone for Stat

Source§

fn clone(&self) -> Stat

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Stat

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Stat

Source§

fn default() -> Stat

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Stat

Source§

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 Stat

Source§

fn eq(&self, other: &Stat) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Stat

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Stat

Auto Trait Implementations§

§

impl Freeze for Stat

§

impl RefUnwindSafe for Stat

§

impl Send for Stat

§

impl Sync for Stat

§

impl Unpin for Stat

§

impl UnwindSafe for Stat

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,