pub struct ContainerFileCitationParam {
pub type: String,
pub start_index: u64,
pub end_index: u64,
pub container_id: String,
pub file_id: String,
pub filename: String,
}Available on crate feature
response-types only.Fields§
§type: StringThe citation type. Always container_file_citation.
start_index: u64The index of the first character of the citation in the message.
end_index: u64The index of the last character of the citation in the message.
container_id: StringThe ID of the container.
file_id: StringThe ID of the container file.
filename: StringThe filename of the container file cited.
Trait Implementations§
Source§impl Clone for ContainerFileCitationParam
impl Clone for ContainerFileCitationParam
Source§fn clone(&self) -> ContainerFileCitationParam
fn clone(&self) -> ContainerFileCitationParam
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 ContainerFileCitationParam
impl Debug for ContainerFileCitationParam
Source§impl<'de> Deserialize<'de> for ContainerFileCitationParam
impl<'de> Deserialize<'de> for ContainerFileCitationParam
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 ContainerFileCitationParam
Auto Trait Implementations§
impl Freeze for ContainerFileCitationParam
impl RefUnwindSafe for ContainerFileCitationParam
impl Send for ContainerFileCitationParam
impl Sync for ContainerFileCitationParam
impl Unpin for ContainerFileCitationParam
impl UnsafeUnpin for ContainerFileCitationParam
impl UnwindSafe for ContainerFileCitationParam
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