Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/viaduct/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl std::fmt::Display for Method {
#[derive(Clone, uniffi::Record)]
pub struct Request {
pub method: Method,
pub url: Url,
pub url: ViaductUrl,
pub headers: Headers,
pub body: Option<Vec<u8>>,
}
Expand Down Expand Up @@ -258,7 +258,7 @@ pub struct Response {
/// The method used to request this response.
pub request_method: Method,
/// The URL of this response.
pub url: Url,
pub url: ViaductUrl,
/// The HTTP Status code of this response.
pub status: u16,
/// The headers returned with this response.
Expand Down