[][src]Struct cortex::models::NewService

pub struct NewService {
    pub name: String,
    pub version: f32,
    pub inputformat: String,
    pub outputformat: String,
    pub inputconverter: Option<String>,
    pub complex: bool,
    pub description: String,
}

Insertable struct for Service

Fields

name: String

a human-readable name

version: f32

a floating-point number to mark the current version (e.g. 0.01)

inputformat: String

the expected input format (e.g. tex)

outputformat: String

the produced output format (e.g. html)

inputconverter: Option<String>

prerequisite input conversion service, if any

complex: bool

is this service requiring more than the main textual content of a document? mark "true" if unsure

description: String

a human-readable description

Trait Implementations

impl Clone for NewService[src]

impl CortexInsertable for NewService[src]

impl Debug for NewService[src]

impl<'insert> Insertable<table> for NewService[src]

type Values = <(Option<Eq<name, String>>, Option<Eq<version, f32>>, Option<Eq<inputformat, String>>, Option<Eq<outputformat, String>>, Option<Eq<inputconverter, String>>, Option<Eq<complex, bool>>, Option<Eq<description, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> Insertable<table> for &'insert NewService[src]

type Values = <(Option<Eq<name, &'insert String>>, Option<Eq<version, &'insert f32>>, Option<Eq<inputformat, &'insert String>>, Option<Eq<outputformat, &'insert String>>, Option<Eq<inputconverter, &'insert String>>, Option<Eq<complex, &'insert bool>>, Option<Eq<description, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> UndecoratedInsertRecord<table> for NewService[src]

Auto Trait Implementations

impl RefUnwindSafe for NewService

impl Send for NewService

impl Sync for NewService

impl Unpin for NewService

impl UnwindSafe for NewService

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, I> AsResult<T, I> for T where
    I: Input, 

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoCollection<T> for T

impl<T> IntoSql for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,