pub struct StrategyReportRow {Show 19 fields
pub id: i64,
pub week_start: String,
pub week_end: String,
pub replies_sent: i64,
pub tweets_posted: i64,
pub threads_posted: i64,
pub target_replies: i64,
pub follower_start: i64,
pub follower_end: i64,
pub follower_delta: i64,
pub avg_reply_score: f64,
pub avg_tweet_score: f64,
pub reply_acceptance_rate: f64,
pub estimated_follow_conversion: f64,
pub top_topics_json: String,
pub bottom_topics_json: String,
pub top_content_json: String,
pub recommendations_json: String,
pub created_at: String,
}Expand description
A persisted weekly strategy report.
Fields§
§id: i64§week_start: String§week_end: String§replies_sent: i64§tweets_posted: i64§threads_posted: i64§target_replies: i64§follower_start: i64§follower_end: i64§follower_delta: i64§avg_reply_score: f64§avg_tweet_score: f64§reply_acceptance_rate: f64§estimated_follow_conversion: f64§top_topics_json: String§bottom_topics_json: String§top_content_json: String§recommendations_json: String§created_at: StringTrait Implementations§
Source§impl Clone for StrategyReportRow
impl Clone for StrategyReportRow
Source§fn clone(&self) -> StrategyReportRow
fn clone(&self) -> StrategyReportRow
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 StrategyReportRow
impl Debug for StrategyReportRow
Source§impl<'de> Deserialize<'de> for StrategyReportRow
impl<'de> Deserialize<'de> for StrategyReportRow
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<'a, R: Row> FromRow<'a, R> for StrategyReportRow
impl<'a, R: Row> FromRow<'a, R> for StrategyReportRow
Auto Trait Implementations§
impl Freeze for StrategyReportRow
impl RefUnwindSafe for StrategyReportRow
impl Send for StrategyReportRow
impl Sync for StrategyReportRow
impl Unpin for StrategyReportRow
impl UnsafeUnpin for StrategyReportRow
impl UnwindSafe for StrategyReportRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more