pub struct ReplySent {
pub id: i64,
pub target_tweet_id: String,
pub reply_tweet_id: Option<String>,
pub reply_content: String,
pub llm_provider: Option<String>,
pub llm_model: Option<String>,
pub created_at: String,
pub status: String,
pub error_message: Option<String>,
}Expand description
A reply generated and posted by the agent.
Fields§
§id: i64Internal auto-generated ID.
target_tweet_id: StringTweet ID that was replied to.
reply_tweet_id: Option<String>Our reply’s X tweet ID (None if post failed).
reply_content: StringGenerated reply text.
llm_provider: Option<String>Which LLM generated this reply.
llm_model: Option<String>Which model was used.
created_at: StringISO-8601 UTC timestamp when reply was sent.
status: StringStatus: sent, failed, or deleted.
error_message: Option<String>Error details if failed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReplySent
impl RefUnwindSafe for ReplySent
impl Send for ReplySent
impl Sync for ReplySent
impl Unpin for ReplySent
impl UnsafeUnpin for ReplySent
impl UnwindSafe for ReplySent
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