pub struct WandbIntegration {
pub type: Option<Type>,
pub project: String,
pub name: Option<Option<String>>,
pub api_key: String,
pub run_name: Option<Option<String>>,
}Fields§
§type: Option<Type>§project: StringThe name of the project that the new run will be created under.
name: Option<Option<String>>§api_key: StringThe WandB API key to use for authentication.
run_name: Option<Option<String>>Implementations§
Source§impl WandbIntegration
impl WandbIntegration
pub fn new(project: String, api_key: String) -> WandbIntegration
Trait Implementations§
Source§impl Clone for WandbIntegration
impl Clone for WandbIntegration
Source§fn clone(&self) -> WandbIntegration
fn clone(&self) -> WandbIntegration
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 WandbIntegration
impl Debug for WandbIntegration
Source§impl Default for WandbIntegration
impl Default for WandbIntegration
Source§fn default() -> WandbIntegration
fn default() -> WandbIntegration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WandbIntegration
impl<'de> Deserialize<'de> for WandbIntegration
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 PartialEq for WandbIntegration
impl PartialEq for WandbIntegration
Source§impl Serialize for WandbIntegration
impl Serialize for WandbIntegration
impl StructuralPartialEq for WandbIntegration
Auto Trait Implementations§
impl Freeze for WandbIntegration
impl RefUnwindSafe for WandbIntegration
impl Send for WandbIntegration
impl Sync for WandbIntegration
impl Unpin for WandbIntegration
impl UnsafeUnpin for WandbIntegration
impl UnwindSafe for WandbIntegration
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