pub enum ParsedInput {
Reference(String),
Feed {
owner: String,
topic: String,
},
}Expand description
Output of parse_input.
Variants§
Reference(String)
A direct Swarm reference (caller should pass it straight to
check_multi_vantage).
Feed
A feed reference (caller should call resolve_feed first to
get the current chunk reference, then probe that).
Auto Trait Implementations§
impl Freeze for ParsedInput
impl RefUnwindSafe for ParsedInput
impl Send for ParsedInput
impl Sync for ParsedInput
impl Unpin for ParsedInput
impl UnsafeUnpin for ParsedInput
impl UnwindSafe for ParsedInput
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