pub struct OriginalTweet {
pub id: i64,
pub tweet_id: Option<String>,
pub content: String,
pub topic: Option<String>,
pub llm_provider: Option<String>,
pub created_at: String,
pub status: String,
pub error_message: Option<String>,
}Expand description
An educational tweet generated and posted by the agent.
Fields§
§id: i64Internal auto-generated ID.
tweet_id: Option<String>X tweet ID after posting (None if failed).
content: StringTweet text.
topic: Option<String>Industry topic this covers.
llm_provider: Option<String>Which LLM generated this.
created_at: StringISO-8601 UTC timestamp when tweet was posted.
status: StringStatus: sent or failed.
error_message: Option<String>Error details if failed.
Trait Implementations§
Source§impl Clone for OriginalTweet
impl Clone for OriginalTweet
Source§fn clone(&self) -> OriginalTweet
fn clone(&self) -> OriginalTweet
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 OriginalTweet
impl Debug for OriginalTweet
Source§impl<'a, R: Row> FromRow<'a, R> for OriginalTweet
impl<'a, R: Row> FromRow<'a, R> for OriginalTweet
Auto Trait Implementations§
impl Freeze for OriginalTweet
impl RefUnwindSafe for OriginalTweet
impl Send for OriginalTweet
impl Sync for OriginalTweet
impl Unpin for OriginalTweet
impl UnsafeUnpin for OriginalTweet
impl UnwindSafe for OriginalTweet
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