pub struct ScriptChannel {
pub id: i64,
pub script_id: i64,
pub name: String,
pub version_id: Option<i64>,
pub updated_at: Option<String>,
}Fields§
§id: i64§script_id: i64§name: String§version_id: Option<i64>§updated_at: Option<String>Trait Implementations§
Source§impl Clone for ScriptChannel
impl Clone for ScriptChannel
Source§fn clone(&self) -> ScriptChannel
fn clone(&self) -> ScriptChannel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScriptChannel
impl Debug for ScriptChannel
Source§impl<'de> Deserialize<'de> for ScriptChannel
impl<'de> Deserialize<'de> for ScriptChannel
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 ScriptChannel
impl RefUnwindSafe for ScriptChannel
impl Send for ScriptChannel
impl Sync for ScriptChannel
impl Unpin for ScriptChannel
impl UnsafeUnpin for ScriptChannel
impl UnwindSafe for ScriptChannel
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