// This is free and unencumbered software released into the public domain.
usecrate::{Read,Result, Url};/// See: https://en.wikipedia.org/wiki/Secure_copy_protocol
/// See: https://man.openbsd.org/scp
pubfnopen<'a, 'b>(_url:&'aUrl<'b>)->Result<Box<dyn Read>>{todo!()// TODO
}