pub struct LangfuseSetup {
pub host: String,
pub public_key: String,
pub secret_key: String,
pub flush_interval: Duration,
pub max_batch: usize,
}Expand description
Parsed Langfuse upload parameters (credentials already validated as non-empty).
Fields§
§host: String§public_key: String§secret_key: String§flush_interval: Duration§max_batch: usizeAuto Trait Implementations§
impl Freeze for LangfuseSetup
impl RefUnwindSafe for LangfuseSetup
impl Send for LangfuseSetup
impl Sync for LangfuseSetup
impl Unpin for LangfuseSetup
impl UnsafeUnpin for LangfuseSetup
impl UnwindSafe for LangfuseSetup
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