pub struct ResourceOutput {
pub contents: Vec<ResourceOutputContent>,
}Expand description
The output returned by reading a resource.
Fields§
§contents: Vec<ResourceOutputContent>Returned content blocks.
Implementations§
Trait Implementations§
Source§impl Clone for ResourceOutput
impl Clone for ResourceOutput
Source§fn clone(&self) -> ResourceOutput
fn clone(&self) -> ResourceOutput
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 ResourceOutput
impl Debug for ResourceOutput
Source§impl<'de> Deserialize<'de> for ResourceOutput
impl<'de> Deserialize<'de> for ResourceOutput
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 Eq for ResourceOutput
Source§impl PartialEq for ResourceOutput
impl PartialEq for ResourceOutput
Source§impl Serialize for ResourceOutput
impl Serialize for ResourceOutput
impl StructuralPartialEq for ResourceOutput
Auto Trait Implementations§
impl Freeze for ResourceOutput
impl RefUnwindSafe for ResourceOutput
impl Send for ResourceOutput
impl Sync for ResourceOutput
impl Unpin for ResourceOutput
impl UnsafeUnpin for ResourceOutput
impl UnwindSafe for ResourceOutput
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