pub struct SkeletonOutput {
pub addr: PathBuf,
pub body: String,
}
Expand description
SkeletonOutput represents a template of a resource managed by a Connector. A connectot can return multiple skeletons through get_skeletons() in order to provide the user with a set of template resources to be used by other tools, or as examples of the kinds of resources that the user can instantiate and manage through the connector.
Fields§
§addr: PathBuf
§body: String
Trait Implementations§
Source§impl Debug for SkeletonOutput
impl Debug for SkeletonOutput
Source§impl<'de> Deserialize<'de> for SkeletonOutput
impl<'de> Deserialize<'de> for SkeletonOutput
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 SkeletonOutput
impl RefUnwindSafe for SkeletonOutput
impl Send for SkeletonOutput
impl Sync for SkeletonOutput
impl Unpin for SkeletonOutput
impl UnwindSafe for SkeletonOutput
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