pub struct UpdateLangfuseCredentialDto {
pub public_key: Option<String>,
pub api_key: Option<String>,
pub api_url: Option<String>,
pub name: Option<String>,
}
Fields§
§public_key: Option<String>
The public key for Langfuse project. Eg: pk-lf-…
api_key: Option<String>
The secret key for Langfuse project. Eg: sk-lf-… .This is not returned in the API.
api_url: Option<String>
The host URL for Langfuse project. Eg: https://cloud.langfuse.com
name: Option<String>
This is the name of credential. This is just for your reference.
Implementations§
Source§impl UpdateLangfuseCredentialDto
impl UpdateLangfuseCredentialDto
pub fn new() -> UpdateLangfuseCredentialDto
Trait Implementations§
Source§impl Clone for UpdateLangfuseCredentialDto
impl Clone for UpdateLangfuseCredentialDto
Source§fn clone(&self) -> UpdateLangfuseCredentialDto
fn clone(&self) -> UpdateLangfuseCredentialDto
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 UpdateLangfuseCredentialDto
impl Debug for UpdateLangfuseCredentialDto
Source§impl Default for UpdateLangfuseCredentialDto
impl Default for UpdateLangfuseCredentialDto
Source§fn default() -> UpdateLangfuseCredentialDto
fn default() -> UpdateLangfuseCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateLangfuseCredentialDto
impl<'de> Deserialize<'de> for UpdateLangfuseCredentialDto
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
impl StructuralPartialEq for UpdateLangfuseCredentialDto
Auto Trait Implementations§
impl Freeze for UpdateLangfuseCredentialDto
impl RefUnwindSafe for UpdateLangfuseCredentialDto
impl Send for UpdateLangfuseCredentialDto
impl Sync for UpdateLangfuseCredentialDto
impl Unpin for UpdateLangfuseCredentialDto
impl UnwindSafe for UpdateLangfuseCredentialDto
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