pub struct RecordingBody {
pub recording: Option<Value>,
pub project_slug: String,
}Fields§
§recording: Option<Value>§project_slug: Stringhub project slug (3-50 chars, lowercase alphanumeric and hyphens, no leading/trailing hyphen)
Implementations§
Source§impl RecordingBody
impl RecordingBody
pub fn new(project_slug: String) -> RecordingBody
Trait Implementations§
Source§impl Clone for RecordingBody
impl Clone for RecordingBody
Source§fn clone(&self) -> RecordingBody
fn clone(&self) -> RecordingBody
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 RecordingBody
impl Debug for RecordingBody
Source§impl Default for RecordingBody
impl Default for RecordingBody
Source§fn default() -> RecordingBody
fn default() -> RecordingBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordingBody
impl<'de> Deserialize<'de> for RecordingBody
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 RecordingBody
impl PartialEq for RecordingBody
Source§impl Serialize for RecordingBody
impl Serialize for RecordingBody
impl StructuralPartialEq for RecordingBody
Auto Trait Implementations§
impl Freeze for RecordingBody
impl RefUnwindSafe for RecordingBody
impl Send for RecordingBody
impl Sync for RecordingBody
impl Unpin for RecordingBody
impl UnsafeUnpin for RecordingBody
impl UnwindSafe for RecordingBody
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