How to know ownership in RPC function?

if i run this code on client side

UFUNCTION(Server, Reliable)
void Foo();

void Foo_Implementation(int _someNumber)
{
    _gameState->_someVariable = _someNumber; 
}

is that _gameState in function on server Side?

and next time, i run that function on Server side, is that value already changed?