Struct noodles_refget::sequence::Service
source · pub struct Service { /* private fields */ }
Expand description
Service information.
Implementations§
source§impl Service
impl Service
sourcepub fn circular_supported(&self) -> bool
pub fn circular_supported(&self) -> bool
Returns whether circular genomes are supported by the server.
sourcepub fn algorithms(&self) -> &[String]
pub fn algorithms(&self) -> &[String]
Returns a list of digest algorithms supported by the server.
sourcepub fn identifier_types(&self) -> &[String]
pub fn identifier_types(&self) -> &[String]
Returns a list of supported sequence type identifiers.
sourcepub fn subsequence_limit(&self) -> Option<NonZeroU32>
pub fn subsequence_limit(&self) -> Option<NonZeroU32>
Returns the maximum length of an interval.
If missing, there is no limit.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Service
impl<'de> Deserialize<'de> for Service
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 Service
impl PartialEq for Service
impl Eq for Service
impl StructuralPartialEq for Service
Auto Trait Implementations§
impl Freeze for Service
impl RefUnwindSafe for Service
impl Send for Service
impl Sync for Service
impl Unpin for Service
impl UnwindSafe for Service
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