pub struct Runbeam {
pub resource_type: String,
pub id: Option<String>,
pub code: String,
pub name: String,
pub team_id: String,
pub gateway_id: Option<String>,
pub enabled: Option<bool>,
pub cloud_api_base_url: Option<String>,
pub poll_interval_secs: Option<u32>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Expand description
Runbeam Cloud integration configuration
Fields§
§resource_type: String§id: Option<String>§code: String§name: String§team_id: String§gateway_id: Option<String>§enabled: Option<bool>§cloud_api_base_url: Option<String>§poll_interval_secs: Option<u32>§created_at: Option<String>§updated_at: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Runbeam
impl<'de> Deserialize<'de> for Runbeam
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
Auto Trait Implementations§
impl Freeze for Runbeam
impl RefUnwindSafe for Runbeam
impl Send for Runbeam
impl Sync for Runbeam
impl Unpin for Runbeam
impl UnwindSafe for Runbeam
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